origin icon indicating copy to clipboard operation
origin copied to clipboard

Program startup and thread support written in Rust

Results 6 origin issues
Sort by recently updated
recently updated
newest added

Origin should switch from the log crate to the tracing crate. Tracing brings support for scoping and nesting and overall has become the "standard" way to log/trace code. It's already...

This pr attempts to replace log with tracing in a way that is backwards compatible. However after staring at the code for a while I do start wondering if it's...

Following up on #23, it's still not clear to me exactly why relocation is so hard to implement safely. When building a normal rust binary linking to libc I never...

atomic-dbg has a `PIPE_BUF`-sized buffer which gets allocated on the stack. This is enough to quickly overflow stacks, especially `SIGSTKSZ`-sized stacks for signal handlers. Perhaps `atomic-dbg` should use an `mmap`ed...

I'm doing something wrong but don't know what. I'm trying to replicate `tiny-hello` example but get this error: ``` error: linking with `rust-lld` failed: exit status: 1 = note: rust-lld:...