Pierre Krieger
Pierre Krieger
The Wasi standard also supports modules whose entry point is `_initialize`. https://github.com/WebAssembly/WASI/blob/master/design/application-abi.md
Wasmi is the WASM interpreter. Since it's an interpreter, it is slow. The requirement for the WASM engine are: - When the WASM code invokes a function that it has...
We could add a new `opengl` interface implemented by `modules/compositor`. The `glutin` library could then be tweaked to use this interface. On the implementation side, the OSMesa library could be...
https://github.com/tomaka/redshirt/blob/d047867200681f38805fae9779cc33096c9006a4/kernel/standalone/src/arch/arm.rs#L52-L137 Since they are `#[naked]` functions, they can't use Rust code. The BSS needs to be cleared, but since the BSS includes the stack, this clearing can only be done...
The current peer-to-peer loaded uses a custom peer-to-peer network because it's simple to implement. IPFS, due to its popularity, seems like a better choice for publishing modules. The tooling is...
We need kind of the equivalent to `ulimit`. After #53 is done, if we try to send a message with a response while the limit is reached, this should instantly...
#506 removes the `hosted-time` crate because it was too complicated to update. #506 in general makes writing native programs considerably more complex. Not because of changes in the API of...
It would be great if CI could build an image of a USB stick, so that one could directly write it and boot it on an actual machine. Difficulty: I...
Normally we have to properly parse the ACPI tables to detect the RTC, and, if it's not present, use a "time device" whose method of access is in AML. Since...