diff options
author | Randy Reddig <[email protected]> | 2024-10-17 08:08:21 -0700 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-10-17 17:30:33 +0100 |
commit | d5f195387d14ba48f977841d7b3d38459604cc5d (patch) | |
tree | 330077cac0871a248398aff7fd813c7f51f57d53 /src/internal/wasi/io/v0.2.0/poll/poll.wit.go | |
parent | a0d4ecb607478c9981673cd86716a535e4f6df15 (diff) | |
download | tinygo-d5f195387d14ba48f977841d7b3d38459604cc5d.tar.gz tinygo-d5f195387d14ba48f977841d7b3d38459604cc5d.zip |
internal/{cm,wasi}: regenerate WASI 0.2 bindings with wasm-tools-go v0.3.0
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.go | 16 |
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]) |