Katherine
Katherine
Given that theft.h abstracts the `theft_seed` type, it'd be handy to provide something akin to `strtoul()` which parses a suitably-sized string in the same format which theft prints seeds.
The one-shot `run` mode doesn't allow any CLI options, but `serve` (the default) does. CLI options should be handled for both.
In #301 support for guest profiling was added. This corresponds to an equivalent CLI flag in wasmtime introduced in https://github.com/bytecodealliance/wasmtime/pull/6362 (and documented in https://github.com/bytecodealliance/wasmtime/pull/6393). We have no way to control...
Currently the sample frequency for profiling in Viceroy is hardcoded to 50µs. For our purposes we don't need the frequency to be so low that performance is unaffected, but we...
#146 requested exposing the host machine's environment within the wasm runtime, and was rejected because that behaviour would not match the production network. Quoting @cratelyn there: > keeping the environment...
Here I rearranged some structs for slightly denser layout, and (in the case of `struct ir_state`) to now fit in a single cache line instead of two. compared to the...
From the manpage: > Input files have one pattern per line. Each pattern has an associated id. ids are assigned depending on the number of input files. For a single...
We can do this in the caller with `ferror()` or setting `errno = 0` or whatever. We could distinguish this in the generated code, and explicitly return a different value....
We skimped on this in #500: > this ought to be exposed to re(1) as a CLI interface in a similar way to re_is_literal. Which means tests for the CLI...