You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
collect/src
Avril 14f32d6262
Explicitly closes `stdout` before process exits.
2 years ago
..
memfile Attempted to add new feature flag: `memfile-size-output`: Which will pre- or post- set the size of `stdout` to the correct buffer size, allowing consumers of `collect`"s stdout pipe to know the size just like a file. However, `ftruncate()` always fails on stdout. Before re-enabling the feature, we must find out how to set the size of a pipe, if/when you even can, and what syscall(s) you need to do it with. 2 years ago
buffers.rs Started adding `memfile` feature: Use a `memfd_create()`d in-memory temporary file. 2 years ago
ext.rs Attempted to add new feature flag: `memfile-size-output`: Which will pre- or post- set the size of `stdout` to the correct buffer size, allowing consumers of `collect`"s stdout pipe to know the size just like a file. However, `ftruncate()` always fails on stdout. Before re-enabling the feature, we must find out how to set the size of a pipe, if/when you even can, and what syscall(s) you need to do it with. 2 years ago
main.rs Explicitly closes `stdout` before process exits. 2 years ago
memfile.rs Removed `stackalloc` dependancy. 2 years ago
sys.rs Added TODOs for specific bugs (and impl related ideas for how to go about preventing/warning in the event of `mode-memfd` system OOM) ; moved some RawFd-related functions into a submodule 2 years ago