! * The buffer size of the stdin/stdout/stderr * streams of the child process. * Default value is 0. */
| 788 | * Default value is 0. |
| 789 | */ |
| 790 | struct bufsize { |
| 791 | explicit bufsize(int sz): bufsiz(sz) {} |
| 792 | int bufsiz = 0; |
| 793 | }; |
| 794 | |
| 795 | /*! |
| 796 | * Option to defer spawning of the child process |
nothing calls this directly
no outgoing calls
no test coverage detected