-
Notifications
You must be signed in to change notification settings - Fork 824
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wasi: Remove vbus leftovers and improve task joining
* A new TaskStatus is introduced that specifies the current state of a task (usually a process or thread) * Status tracking is refactored to use tokio::sync::watch instead of a homegrown solution which combined channels and mutexes * The task status now not just tracks an exit code, but also the ocurred error This helps consumers of the task status to know that and error ocurred, and which one, which helps debugging / logging and potential recovery * Remove the unused VBUS crate leftover types and traits Almost all gone, except for the VirtualBusError * Move SignalHandlerAbi types to os::signal
- Loading branch information
Showing
26 changed files
with
427 additions
and
849 deletions.
There are no files selected for viewing
This file contains 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 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
Oops, something went wrong.