! * Option to close all file descriptors * when the child process is spawned. * The close fd list does not include * input/output/error if they are explicitly * set as part of the Popen arguments. * * Default value is false. */
| 812 | * Default value is false. |
| 813 | */ |
| 814 | struct close_fds { |
| 815 | explicit close_fds(bool c): close_all(c) {} |
| 816 | bool close_all = false; |
| 817 | }; |
| 818 | |
| 819 | /*! |
| 820 | * Option to make the child process as the |
nothing calls this directly
no outgoing calls
no test coverage detected