Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2012-02-02 | make stdio open, read, and write operations cancellation points | Rich Felker | -1/+1 | |
it should be noted that only the actual underlying buffer flush and fill operations are cancellable, not reads from or writes to the buffer. this behavior is compatible with POSIX, which makes all cancellation points in stdio optional, and it achieves the goal of allowing cancellation of a thread that's "stuck" on IO (due to a non-responsive socket/pipe peer, slow/stuck hardware, etc.) without imposing any measurable performance cost. | ||||
2011-04-17 | debloat: use __syscall instead of syscall where possible | Rich Felker | -1/+1 | |
don't waste time (and significant code size due to function call overhead!) setting errno when the result of a syscall does not matter or when it can't fail. | ||||
2011-03-20 | global cleanup to use the new syscall interface | Rich Felker | -2/+2 | |
2011-02-12 | initial check-in, version 0.5.0v0.5.0 | Rich Felker | -0/+34 | |