MCPcopy Create free account
hub / github.com/arun11299/cpp-subprocess / bufsize

Class bufsize

cpp-subprocess/subprocess.hpp:790–793  ·  view source on GitHub ↗

! * The buffer size of the stdin/stdout/stderr * streams of the child process. * Default value is 0. */

Source from the content-addressed store, hash-verified

788 * Default value is 0.
789 */
790struct bufsize {
791 explicit bufsize(int sz): bufsiz(sz) {}
792 int bufsiz = 0;
793};
794
795/*!
796 * Option to defer spawning of the child process

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected