-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Avoid JSPI suspend on poll()/select() with zero timeout #27100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
4fa8a26
Route zero-timeout poll() through a non-suspending import
guybedford 103fa0d
pr feedback
guybedford 96b774f
remove undefined variant
guybedford a9878b1
Merge branch 'main' into ready-poll
guybedford b602e73
Merge branch 'main' into ready-poll
guybedford d68aa7a
Merge branch 'main' into ready-poll
guybedford File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| #include <assert.h> | ||
|
guybedford marked this conversation as resolved.
|
||
| #include <emscripten/emscripten.h> | ||
| #include <emscripten/eventloop.h> | ||
| #include <poll.h> | ||
| #include <stdio.h> | ||
| #include <unistd.h> | ||
|
|
||
| // A zero-timeout poll() is a non-suspending probe, so it must work from any | ||
| // context. The property under test with -sJSPI: it stays callable from an | ||
| // event-loop callback, where a suspending call would trap (Suspending | ||
| // imports require a stack entered via a promising export). | ||
|
|
||
| static void probe(const char* where) { | ||
| struct pollfd pfd; | ||
| pfd.fd = STDOUT_FILENO; | ||
| pfd.events = POLLOUT; | ||
| pfd.revents = 0; | ||
| int n = poll(&pfd, 1, 0); | ||
| assert(n == 1); | ||
| assert(pfd.revents & POLLOUT); | ||
| printf("poll probe ok from %s\n", where); | ||
| } | ||
|
|
||
| static void on_timeout(void* user_data) { | ||
| probe("callback"); | ||
| // A true shutdown even where the runtime is kept alive (e.g. worker | ||
| // threads under PROXY_TO_PTHREAD). | ||
| emscripten_force_exit(0); | ||
| } | ||
|
|
||
| int main(void) { | ||
| probe("main"); | ||
| emscripten_set_timeout(on_timeout, 0, NULL); | ||
| emscripten_exit_with_live_runtime(); | ||
| return 99; | ||
| } | ||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.