mirror of https://git.musl-libc.org/git/musl
Browse Source
this change makes it so most calls to fprintf(stderr, ...) will result in a single writev syscall, as opposed to roughly 2*N syscalls (and possibly more) where N is the number of format specifiers. in principle we could use a much larger buffer, but it's best not to increase the stack requirements too much. most messages are under 80 chars.rs-1.0
2 changed files with 14 additions and 0 deletions
Loading…
Reference in new issue