Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2012-11-08 | clean up stdio_impl.h | Rich Felker | -1/+2 | |
this header evolved to facilitate the extremely lazy practice of omitting explicit includes of the necessary headers in individual stdio source files; not only was this sloppy, but it also increased build time. now, stdio_impl.h is only including the headers it needs for its own use; any further headers needed by source files are included directly where needed. | ||||
2012-06-20 | avoid cancellation in pclose | Rich Felker | -3/+4 | |
at the point pclose might receive and act on cancellation, it has already invalidated the FILE passed to it. thus, per musl's QOI guarantees about cancellation and resource allocation/deallocation, it's not a candidate for cancellation. if it were required to be a cancellation point by posix, we would have to switch the order of deallocation, but somehow still close the pipe in order to trigger the child process to exit. i looked into doing this, but the logic gets ugly, and i'm not sure the semantics are conformant, so i'd rather just leave it alone unless there's a need to change it. | ||||
2012-06-20 | fix invalid memory access in pclose | Rich Felker | -1/+2 | |
2011-02-12 | initial check-in, version 0.5.0v0.5.0 | Rich Felker | -0/+10 | |