aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/internal/wasi/io/v0.2.0/poll/poll.wit.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/wasi/io/v0.2.0/poll/poll.wit.go')
-rw-r--r--src/internal/wasi/io/v0.2.0/poll/poll.wit.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/internal/wasi/io/v0.2.0/poll/poll.wit.go b/src/internal/wasi/io/v0.2.0/poll/poll.wit.go
index 626ac50e1..a3d516394 100644
--- a/src/internal/wasi/io/v0.2.0/poll/poll.wit.go
+++ b/src/internal/wasi/io/v0.2.0/poll/poll.wit.go
@@ -28,10 +28,6 @@ func (self Pollable) ResourceDrop() {
return
}
-//go:wasmimport wasi:io/[email protected] [resource-drop]pollable
-//go:noescape
-func wasmimport_PollableResourceDrop(self0 uint32)
-
// Block represents the imported method "block".
//
// `block` returns immediately if the pollable is ready, and otherwise
@@ -49,10 +45,6 @@ func (self Pollable) Block() {
return
}
-//go:wasmimport wasi:io/[email protected] [method]pollable.block
-//go:noescape
-func wasmimport_PollableBlock(self0 uint32)
-
// Ready represents the imported method "ready".
//
// Return the readiness of a pollable. This function never blocks.
@@ -69,10 +61,6 @@ func (self Pollable) Ready() (result bool) {
return
}
-//go:wasmimport wasi:io/[email protected] [method]pollable.ready
-//go:noescape
-func wasmimport_PollableReady(self0 uint32) (result0 uint32)
-
// Poll represents the imported function "poll".
//
// Poll for completion on a set of pollables.
@@ -102,7 +90,3 @@ func Poll(in cm.List[Pollable]) (result cm.List[uint32]) {
wasmimport_Poll((*Pollable)(in0), (uint32)(in1), &result)
return
}
-
-//go:wasmimport wasi:io/[email protected] poll
-//go:noescape
-func wasmimport_Poll(in0 *Pollable, in1 uint32, result *cm.List[uint32])