-
Notifications
You must be signed in to change notification settings - Fork 824
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
Fix small return types. #379
Conversation
bors try |
tryBuild failed |
bors try |
It works on Linux, @xmclark will test on Windows |
pub const __WASI_ETIMEDOUT: u16 = 73; | ||
pub const __WASI_ETXTBSY: u16 = 74; | ||
pub const __WASI_EXDEV: u16 = 75; | ||
pub const __WASI_ENOTCAPABLE: u16 = 76; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should revert everything else. The fix changed all u16s to u32s
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
… errors from imported functions" This reverts commit 74b6ba4. # Conflicts: # lib/wasi/src/syscalls/mod.rs
bors r+ |
379: Fix small return types. r=syrusakbary a=lachlansneff This fixes returning integers smaller than 32bits from imported functions. Also some work on fixing returning errors from functions. Co-authored-by: Lachlan Sneff <[email protected]> Co-authored-by: Syrus <[email protected]>
bors retry |
379: Fix small return types. r=syrusakbary a=lachlansneff This fixes returning integers smaller than 32bits from imported functions. Also some work on fixing returning errors from functions. Co-authored-by: Lachlan Sneff <[email protected]> Co-authored-by: Syrus <[email protected]>
bors r+ |
Already running a review |
Better bundling
This fixes returning integers smaller than 32bits from imported functions. Also some work on fixing returning errors from functions.