Don't decode the incoming events to poll_oneoff.#113
Merged
sunfishcode merged 2 commits intomasterfrom Apr 30, 2019
Merged
Conversation
The events array is an output-only array, so we don't need to decode its contents.
0b301f8 to
b3f2a74
Compare
sunfishcode
added a commit
that referenced
this pull request
May 12, 2019
The events array is an output-only array, so we don't need to decode its contents.
kubkon
added a commit
that referenced
this pull request
Nov 7, 2019
* Put misc_testsuite behind a feature gate This PR puts building and generating of misc_testsuite behind a feature gate "misc_testsuite". This is mainly to allow projects which pull `wasi-common` as a dependency not to have to have `wasm32-wasi` target installed in order to build it as it currently is. * Update the CI * Rename feature to wasm_tests * Explain integration testing in the README
grishasobol
pushed a commit
to grishasobol/wasmtime
that referenced
this pull request
Nov 29, 2021
howjmay
pushed a commit
to howjmay/wasmtime
that referenced
this pull request
Jan 24, 2022
Before, the download-wasmtime.py script would remove build/, and add empty.go files for every architecture it has unpacked library artifacts for. Since includebuild.go mentions more than that, notably macos-aarch64 (which there are no unpacked library files), we ended up in a state where the go module couldn't be built. Now, the script will remove all regular files in build/, and re- populate the directory from the downloaded tarballs. In its final step, it drops empty.go files in all directories, even those it that did not get recreated. Fixes bytecodealliance#112. This is `find build` after running the script locally: $ find build build build/macos-aarch64 build/macos-aarch64/empty.go build/linux-x86_64 build/linux-x86_64/empty.go build/linux-x86_64/libwasmtime.a build/linux-aarch64 build/linux-aarch64/empty.go build/linux-aarch64/libwasmtime.a build/include build/include/wasmtime build/include/wasmtime/error.h build/include/wasmtime/trap.h build/include/wasmtime/config.h build/include/wasmtime/global.h build/include/wasmtime/empty.go build/include/wasmtime/memory.h build/include/wasmtime/linker.h build/include/wasmtime/table.h build/include/wasmtime/instance.h build/include/wasmtime/extern.h build/include/wasmtime/func.h build/include/wasmtime/module.h build/include/wasmtime/store.h build/include/wasmtime/val.h build/include/wasmtime.h build/include/wasi.h build/include/empty.go build/include/wasm.h build/include/doc-wasm.h build/empty.go build/macos-x86_64 build/macos-x86_64/empty.go build/macos-x86_64/libwasmtime.a build/windows-x86_64 build/windows-x86_64/empty.go build/windows-x86_64/libwasmtime.a Signed-off-by: Stephan Renatus <stephan.renatus@gmail.com>
pchickey
pushed a commit
to pchickey/wasmtime
that referenced
this pull request
May 16, 2023
* Initial TCP socket host implementation. Initial TCP socket host implementation. This is not yet usable, as it doesn't yet populate the network resource with any networks, but it's a start with the major TCP socket functions implemented. * Update dependencies. * Populate the default instance-network pool. * Fix an unbounded buffer allocation. * Add the tcp-create-socket and udp-create-socket implementations. * Allow things like getsockname to work on listening sockets. * Wire up command-line arguments. * Enable rustix with the "net" feature on all platforms.
mooori
pushed a commit
to mooori/wasmtime
that referenced
this pull request
Dec 20, 2023
Pipe test results using JSON
avanhatt
pushed a commit
to wellesley-prog-sys/wasmtime
that referenced
this pull request
Oct 9, 2024
dicej
pushed a commit
to dicej/wasmtime
that referenced
this pull request
Apr 8, 2025
…bindgen Update wit-bindgen dependency
alexcrichton
pushed a commit
to alexcrichton/wasmtime
that referenced
this pull request
Oct 8, 2025
bongjunj
pushed a commit
to prosyslab/wasmtime
that referenced
this pull request
Oct 20, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The events array is an output-only array, so we don't need to decode its
contents.