├── .circleci └── config.yml ├── .drone.star ├── .drone ├── drone.bat └── drone.sh ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── README.md ├── doc ├── Jamfile.jam ├── acknowledgements.adoc ├── configuration.adoc ├── env.adoc ├── images │ ├── plantuml.txt │ ├── posix_exec_err.svg │ ├── posix_fork_err.svg │ ├── posix_success.svg │ └── windows_exec.svg ├── index.adoc ├── launcher.adoc ├── quickstart.adoc ├── reference │ ├── bind_launcher.adoc │ ├── cstring_ref.adoc │ ├── default_launcher.adoc │ ├── environment.adoc │ ├── error.adoc │ ├── execute.adoc │ ├── exit_code.adoc │ ├── ext.adoc │ ├── pid.adoc │ ├── popen.adoc │ ├── posix │ │ └── bind_fd.adoc │ ├── process.adoc │ ├── process_handle.adoc │ ├── shell.adoc │ ├── start_dir.adoc │ ├── stdio.adoc │ └── windows │ │ ├── creation_flags.adoc │ │ └── show_window.adoc ├── start_dir.adoc ├── stdio.adoc └── version2.adoc ├── example ├── Jamfile.jam ├── env.cpp ├── intro.cpp ├── intro_popen.cpp ├── quickstart.cpp ├── start_dir.cpp └── stdio.cpp ├── filter_section_warning.py ├── include └── boost │ ├── process.hpp │ └── process │ ├── bind_launcher.hpp │ ├── cstring_ref.hpp │ ├── default_launcher.hpp │ ├── environment.hpp │ ├── error.hpp │ ├── execute.hpp │ ├── exit_code.hpp │ ├── ext.hpp │ ├── ext │ ├── cmd.hpp │ ├── cwd.hpp │ ├── env.hpp │ └── exe.hpp │ ├── pid.hpp │ ├── popen.hpp │ ├── posix │ ├── bind_fd.hpp │ ├── default_launcher.hpp │ ├── fork_and_forget_launcher.hpp │ ├── pdfork_launcher.hpp │ └── vfork_launcher.hpp │ ├── process.hpp │ ├── process_handle.hpp │ ├── shell.hpp │ ├── start_dir.hpp │ ├── stdio.hpp │ ├── v1.hpp │ ├── v1 │ ├── args.hpp │ ├── async.hpp │ ├── async_pipe.hpp │ ├── async_system.hpp │ ├── child.hpp │ ├── cmd.hpp │ ├── detail │ │ ├── async_handler.hpp │ │ ├── basic_cmd.hpp │ │ ├── child_decl.hpp │ │ ├── config.hpp │ │ ├── execute_impl.hpp │ │ ├── handler.hpp │ │ ├── handler_base.hpp │ │ ├── on_exit.hpp │ │ ├── posix │ │ │ ├── asio_fwd.hpp │ │ │ ├── async_handler.hpp │ │ │ ├── async_in.hpp │ │ │ ├── async_out.hpp │ │ │ ├── async_pipe.hpp │ │ │ ├── basic_cmd.hpp │ │ │ ├── basic_pipe.hpp │ │ │ ├── child_handle.hpp │ │ │ ├── close_in.hpp │ │ │ ├── close_out.hpp │ │ │ ├── cmd.hpp │ │ │ ├── compare_handles.hpp │ │ │ ├── env_init.hpp │ │ │ ├── environment.hpp │ │ │ ├── exe.hpp │ │ │ ├── executor.hpp │ │ │ ├── fd.hpp │ │ │ ├── file_descriptor.hpp │ │ │ ├── file_in.hpp │ │ │ ├── file_out.hpp │ │ │ ├── group_handle.hpp │ │ │ ├── group_ref.hpp │ │ │ ├── handler.hpp │ │ │ ├── handles.hpp │ │ │ ├── io_context_ref.hpp │ │ │ ├── is_running.hpp │ │ │ ├── null_in.hpp │ │ │ ├── null_out.hpp │ │ │ ├── on_exit.hpp │ │ │ ├── pipe_in.hpp │ │ │ ├── pipe_out.hpp │ │ │ ├── search_path.hpp │ │ │ ├── shell_path.hpp │ │ │ ├── sigchld_service.hpp │ │ │ ├── signal.hpp │ │ │ ├── start_dir.hpp │ │ │ ├── terminate.hpp │ │ │ ├── use_vfork.hpp │ │ │ ├── wait_for_exit.hpp │ │ │ └── wait_group.hpp │ │ ├── throw_on_error.hpp │ │ ├── traits.hpp │ │ ├── traits │ │ │ ├── async.hpp │ │ │ ├── cmd_or_exe.hpp │ │ │ ├── decl.hpp │ │ │ ├── env.hpp │ │ │ ├── error.hpp │ │ │ ├── group.hpp │ │ │ └── wchar_t.hpp │ │ ├── used_handles.hpp │ │ └── windows │ │ │ ├── asio_fwd.hpp │ │ │ ├── async_handler.hpp │ │ │ ├── async_in.hpp │ │ │ ├── async_out.hpp │ │ │ ├── async_pipe.hpp │ │ │ ├── basic_cmd.hpp │ │ │ ├── basic_pipe.hpp │ │ │ ├── child_handle.hpp │ │ │ ├── close_in.hpp │ │ │ ├── close_out.hpp │ │ │ ├── cmd.hpp │ │ │ ├── compare_handles.hpp │ │ │ ├── env_init.hpp │ │ │ ├── environment.hpp │ │ │ ├── executor.hpp │ │ │ ├── file_descriptor.hpp │ │ │ ├── file_in.hpp │ │ │ ├── file_out.hpp │ │ │ ├── group_handle.hpp │ │ │ ├── group_ref.hpp │ │ │ ├── handle_workaround.hpp │ │ │ ├── handler.hpp │ │ │ ├── handles.hpp │ │ │ ├── io_context_ref.hpp │ │ │ ├── is_running.hpp │ │ │ ├── job_workaround.hpp │ │ │ ├── locale.hpp │ │ │ ├── null_in.hpp │ │ │ ├── null_out.hpp │ │ │ ├── on_exit.hpp │ │ │ ├── pipe_in.hpp │ │ │ ├── pipe_out.hpp │ │ │ ├── search_path.hpp │ │ │ ├── shell_path.hpp │ │ │ ├── show_window.hpp │ │ │ ├── start_dir.hpp │ │ │ ├── terminate.hpp │ │ │ ├── wait_for_exit.hpp │ │ │ └── wait_group.hpp │ ├── env.hpp │ ├── environment.hpp │ ├── error.hpp │ ├── exception.hpp │ ├── exe.hpp │ ├── extend.hpp │ ├── filesystem.hpp │ ├── group.hpp │ ├── handles.hpp │ ├── io.hpp │ ├── locale.hpp │ ├── pipe.hpp │ ├── posix.hpp │ ├── search_path.hpp │ ├── shell.hpp │ ├── spawn.hpp │ ├── start_dir.hpp │ ├── system.hpp │ └── windows.hpp │ ├── v2 │ ├── bind_launcher.hpp │ ├── cstring_ref.hpp │ ├── default_launcher.hpp │ ├── detail │ │ ├── config.hpp │ │ ├── environment_posix.hpp │ │ ├── environment_win.hpp │ │ ├── last_error.hpp │ │ ├── process_handle_fd.hpp │ │ ├── process_handle_fd_or_signal.hpp │ │ ├── process_handle_signal.hpp │ │ ├── process_handle_windows.hpp │ │ ├── throw_error.hpp │ │ ├── throw_exception.hpp │ │ └── utf8.hpp │ ├── environment.hpp │ ├── error.hpp │ ├── execute.hpp │ ├── exit_code.hpp │ ├── ext.hpp │ ├── ext │ │ ├── cmd.hpp │ │ ├── cwd.hpp │ │ ├── detail │ │ │ └── proc_info.hpp │ │ ├── env.hpp │ │ └── exe.hpp │ ├── pid.hpp │ ├── popen.hpp │ ├── posix │ │ ├── bind_fd.hpp │ │ ├── default_launcher.hpp │ │ ├── detail │ │ │ └── close_handles.hpp │ │ ├── fork_and_forget_launcher.hpp │ │ ├── pdfork_launcher.hpp │ │ ├── pipe_fork_launcher.hpp │ │ └── vfork_launcher.hpp │ ├── process.hpp │ ├── process_handle.hpp │ ├── shell.hpp │ ├── start_dir.hpp │ ├── stdio.hpp │ └── windows │ │ ├── as_user_launcher.hpp │ │ ├── creation_flags.hpp │ │ ├── default_launcher.hpp │ │ ├── show_window.hpp │ │ ├── with_logon_launcher.hpp │ │ └── with_token_launcher.hpp │ └── windows │ ├── as_user_launcher.hpp │ ├── creation_flags.hpp │ ├── default_launcher.hpp │ ├── show_window.hpp │ ├── with_logon_launcher.hpp │ └── with_token_launcher.hpp ├── index.html ├── meta └── libraries.json ├── src ├── detail │ ├── environment_posix.cpp │ ├── environment_win.cpp │ ├── last_error.cpp │ ├── process_handle_windows.cpp │ ├── throw_error.cpp │ └── utf8.cpp ├── environment.cpp ├── error.cpp ├── ext │ ├── cmd.cpp │ ├── cwd.cpp │ ├── env.cpp │ ├── exe.cpp │ └── proc_info.cpp ├── pid.cpp ├── posix │ └── close_handles.cpp ├── shell.cpp └── windows │ └── default_launcher.cpp └── test ├── CMakeLists.txt ├── Jamfile.jam ├── appveyor.yml ├── v1 ├── CMakeLists.txt ├── Jamfile.jam ├── args_cmd.cpp ├── args_handling.cpp ├── asio_no_deprecated.cpp ├── async.cpp ├── async_fut.cpp ├── async_pipe.cpp ├── async_system_fail.cpp ├── async_system_future.cpp ├── async_system_stackful.cpp ├── async_system_stackful_error.cpp ├── async_system_stackful_except.cpp ├── async_system_stackless.cpp ├── bind_stderr.cpp ├── bind_stdin.cpp ├── bind_stdin_stdout.cpp ├── bind_stdout.cpp ├── bind_stdout_stderr.cpp ├── close_stderr.cpp ├── close_stdin.cpp ├── close_stdout.cpp ├── cmd_test.cpp ├── env.cpp ├── environment.cpp ├── error.cpp ├── exit_argc.cpp ├── exit_code.cpp ├── extensions.cpp ├── group.cpp ├── group_wait.cpp ├── limit_fd.cpp ├── multi_ref1.cpp ├── multi_ref2.cpp ├── no_ansi_apps.cpp ├── on_exit.cpp ├── on_exit2.cpp ├── on_exit3.cpp ├── pipe.cpp ├── pipe_fwd.cpp ├── posix_specific.cpp ├── run_exe.cpp ├── run_exe_path.cpp ├── search_path.cpp ├── shell.cpp ├── shell_path.cpp ├── sparring_partner.cpp ├── spawn.cpp ├── spawn_fail.cpp ├── start_dir.cpp ├── sub_launcher.cpp ├── system_test1.cpp ├── system_test2.cpp ├── terminate.cpp ├── test-file ├── throw_on_error.cpp ├── vfork.cpp ├── wait.cpp ├── wait_for.cpp ├── wargs_cmd.cpp └── windows_specific.cpp └── v2 ├── CMakeLists.txt ├── Jamfile.jam ├── cstring_ref.cpp ├── environment.cpp ├── ext.cpp ├── pid.cpp ├── process.cpp ├── shell.cpp ├── target.cpp ├── test_impl.cpp ├── utf8.cpp └── windows.cpp /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.drone.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/.drone.star -------------------------------------------------------------------------------- /.drone/drone.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/.drone/drone.bat -------------------------------------------------------------------------------- /.drone/drone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/.drone/drone.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/README.md -------------------------------------------------------------------------------- /doc/Jamfile.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/Jamfile.jam -------------------------------------------------------------------------------- /doc/acknowledgements.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/acknowledgements.adoc -------------------------------------------------------------------------------- /doc/configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/configuration.adoc -------------------------------------------------------------------------------- /doc/env.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/env.adoc -------------------------------------------------------------------------------- /doc/images/plantuml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/images/plantuml.txt -------------------------------------------------------------------------------- /doc/images/posix_exec_err.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/images/posix_exec_err.svg -------------------------------------------------------------------------------- /doc/images/posix_fork_err.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/images/posix_fork_err.svg -------------------------------------------------------------------------------- /doc/images/posix_success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/images/posix_success.svg -------------------------------------------------------------------------------- /doc/images/windows_exec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/images/windows_exec.svg -------------------------------------------------------------------------------- /doc/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/index.adoc -------------------------------------------------------------------------------- /doc/launcher.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/launcher.adoc -------------------------------------------------------------------------------- /doc/quickstart.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/quickstart.adoc -------------------------------------------------------------------------------- /doc/reference/bind_launcher.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/bind_launcher.adoc -------------------------------------------------------------------------------- /doc/reference/cstring_ref.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/cstring_ref.adoc -------------------------------------------------------------------------------- /doc/reference/default_launcher.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/default_launcher.adoc -------------------------------------------------------------------------------- /doc/reference/environment.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/environment.adoc -------------------------------------------------------------------------------- /doc/reference/error.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/error.adoc -------------------------------------------------------------------------------- /doc/reference/execute.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/execute.adoc -------------------------------------------------------------------------------- /doc/reference/exit_code.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/exit_code.adoc -------------------------------------------------------------------------------- /doc/reference/ext.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/ext.adoc -------------------------------------------------------------------------------- /doc/reference/pid.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/pid.adoc -------------------------------------------------------------------------------- /doc/reference/popen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/popen.adoc -------------------------------------------------------------------------------- /doc/reference/posix/bind_fd.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/posix/bind_fd.adoc -------------------------------------------------------------------------------- /doc/reference/process.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/process.adoc -------------------------------------------------------------------------------- /doc/reference/process_handle.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/process_handle.adoc -------------------------------------------------------------------------------- /doc/reference/shell.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/shell.adoc -------------------------------------------------------------------------------- /doc/reference/start_dir.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/start_dir.adoc -------------------------------------------------------------------------------- /doc/reference/stdio.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/stdio.adoc -------------------------------------------------------------------------------- /doc/reference/windows/creation_flags.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/windows/creation_flags.adoc -------------------------------------------------------------------------------- /doc/reference/windows/show_window.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/reference/windows/show_window.adoc -------------------------------------------------------------------------------- /doc/start_dir.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/start_dir.adoc -------------------------------------------------------------------------------- /doc/stdio.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/stdio.adoc -------------------------------------------------------------------------------- /doc/version2.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/doc/version2.adoc -------------------------------------------------------------------------------- /example/Jamfile.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/example/Jamfile.jam -------------------------------------------------------------------------------- /example/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/example/env.cpp -------------------------------------------------------------------------------- /example/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/example/intro.cpp -------------------------------------------------------------------------------- /example/intro_popen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/example/intro_popen.cpp -------------------------------------------------------------------------------- /example/quickstart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/example/quickstart.cpp -------------------------------------------------------------------------------- /example/start_dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/example/start_dir.cpp -------------------------------------------------------------------------------- /example/stdio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/example/stdio.cpp -------------------------------------------------------------------------------- /filter_section_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/filter_section_warning.py -------------------------------------------------------------------------------- /include/boost/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process.hpp -------------------------------------------------------------------------------- /include/boost/process/bind_launcher.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/cstring_ref.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/default_launcher.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/environment.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/error.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/execute.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/exit_code.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/ext.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/ext/cmd.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/ext/cwd.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/ext/env.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/ext/exe.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/pid.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/popen.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/posix/bind_fd.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/posix/default_launcher.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/posix/fork_and_forget_launcher.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/posix/pdfork_launcher.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/posix/vfork_launcher.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/process.hpp -------------------------------------------------------------------------------- /include/boost/process/process_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/process_handle.hpp -------------------------------------------------------------------------------- /include/boost/process/shell.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/start_dir.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/stdio.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/v1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/args.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/async.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/async.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/async_pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/async_pipe.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/async_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/async_system.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/child.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/child.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/cmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/cmd.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/async_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/async_handler.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/basic_cmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/basic_cmd.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/child_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/child_decl.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/config.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/execute_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/execute_impl.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/handler.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/handler_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/handler_base.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/on_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/on_exit.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/asio_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/asio_fwd.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/async_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/async_handler.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/async_in.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/async_in.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/async_out.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/async_out.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/async_pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/async_pipe.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/basic_cmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/basic_cmd.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/basic_pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/basic_pipe.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/child_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/child_handle.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/close_in.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/close_in.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/close_out.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/close_out.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/cmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/cmd.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/compare_handles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/compare_handles.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/env_init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/env_init.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/environment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/environment.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/exe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/exe.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/executor.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/fd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/fd.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/file_descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/file_descriptor.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/file_in.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/file_in.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/file_out.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/file_out.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/group_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/group_handle.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/group_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/group_ref.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/handler.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/handles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/handles.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/io_context_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/io_context_ref.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/is_running.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/is_running.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/null_in.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/null_in.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/null_out.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/null_out.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/on_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/on_exit.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/pipe_in.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/pipe_in.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/pipe_out.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/pipe_out.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/search_path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/search_path.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/shell_path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/shell_path.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/sigchld_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/sigchld_service.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/signal.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/start_dir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/start_dir.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/terminate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/terminate.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/use_vfork.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/use_vfork.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/wait_for_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/wait_for_exit.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/posix/wait_group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/posix/wait_group.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/throw_on_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/throw_on_error.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/traits.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/traits/async.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/traits/async.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/traits/cmd_or_exe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/traits/cmd_or_exe.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/traits/decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/traits/decl.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/traits/env.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/traits/env.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/traits/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/traits/error.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/traits/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/traits/group.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/traits/wchar_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/traits/wchar_t.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/used_handles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/used_handles.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/asio_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/asio_fwd.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/async_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/async_handler.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/async_in.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/async_in.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/async_out.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/async_out.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/async_pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/async_pipe.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/basic_cmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/basic_cmd.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/basic_pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/basic_pipe.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/child_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/child_handle.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/close_in.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/close_in.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/close_out.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/close_out.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/cmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/cmd.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/compare_handles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/compare_handles.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/env_init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/env_init.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/environment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/environment.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/executor.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/file_descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/file_descriptor.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/file_in.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/file_in.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/file_out.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/file_out.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/group_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/group_handle.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/group_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/group_ref.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/handle_workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/handle_workaround.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/handler.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/handles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/handles.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/io_context_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/io_context_ref.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/is_running.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/is_running.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/job_workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/job_workaround.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/locale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/locale.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/null_in.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/null_in.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/null_out.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/null_out.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/on_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/on_exit.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/pipe_in.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/pipe_in.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/pipe_out.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/pipe_out.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/search_path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/search_path.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/shell_path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/shell_path.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/show_window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/show_window.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/start_dir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/start_dir.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/terminate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/terminate.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/wait_for_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/wait_for_exit.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/detail/windows/wait_group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/detail/windows/wait_group.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/env.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/env.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/environment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/environment.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/error.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/exception.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/exe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/exe.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/extend.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/filesystem.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/group.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/handles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/handles.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/io.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/locale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/locale.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/pipe.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/posix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/posix.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/search_path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/search_path.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/shell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/shell.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/spawn.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/start_dir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/start_dir.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/system.hpp -------------------------------------------------------------------------------- /include/boost/process/v1/windows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v1/windows.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/bind_launcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/bind_launcher.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/cstring_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/cstring_ref.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/default_launcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/default_launcher.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/detail/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/detail/config.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/detail/environment_posix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/detail/environment_posix.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/detail/environment_win.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/detail/environment_win.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/detail/last_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/detail/last_error.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/detail/process_handle_fd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/detail/process_handle_fd.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/detail/process_handle_fd_or_signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/detail/process_handle_fd_or_signal.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/detail/process_handle_signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/detail/process_handle_signal.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/detail/process_handle_windows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/detail/process_handle_windows.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/detail/throw_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/detail/throw_error.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/detail/throw_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/detail/throw_exception.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/detail/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/detail/utf8.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/environment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/environment.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/error.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/execute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/execute.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/exit_code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/exit_code.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/ext.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/ext/cmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/ext/cmd.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/ext/cwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/ext/cwd.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/ext/detail/proc_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/ext/detail/proc_info.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/ext/env.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/ext/env.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/ext/exe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/ext/exe.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/pid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/pid.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/popen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/popen.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/posix/bind_fd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/posix/bind_fd.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/posix/default_launcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/posix/default_launcher.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/posix/detail/close_handles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/posix/detail/close_handles.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/posix/fork_and_forget_launcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/posix/fork_and_forget_launcher.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/posix/pdfork_launcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/posix/pdfork_launcher.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/posix/pipe_fork_launcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/posix/pipe_fork_launcher.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/posix/vfork_launcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/posix/vfork_launcher.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/process.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/process_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/process_handle.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/shell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/shell.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/start_dir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/start_dir.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/stdio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/stdio.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/windows/as_user_launcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/windows/as_user_launcher.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/windows/creation_flags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/windows/creation_flags.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/windows/default_launcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/windows/default_launcher.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/windows/show_window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/windows/show_window.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/windows/with_logon_launcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/windows/with_logon_launcher.hpp -------------------------------------------------------------------------------- /include/boost/process/v2/windows/with_token_launcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/v2/windows/with_token_launcher.hpp -------------------------------------------------------------------------------- /include/boost/process/windows/as_user_launcher.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/windows/creation_flags.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/windows/default_launcher.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/boost/process/windows/show_window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/windows/show_window.hpp -------------------------------------------------------------------------------- /include/boost/process/windows/with_logon_launcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/windows/with_logon_launcher.hpp -------------------------------------------------------------------------------- /include/boost/process/windows/with_token_launcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/include/boost/process/windows/with_token_launcher.hpp -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/index.html -------------------------------------------------------------------------------- /meta/libraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/meta/libraries.json -------------------------------------------------------------------------------- /src/detail/environment_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/src/detail/environment_posix.cpp -------------------------------------------------------------------------------- /src/detail/environment_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/src/detail/environment_win.cpp -------------------------------------------------------------------------------- /src/detail/last_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/src/detail/last_error.cpp -------------------------------------------------------------------------------- /src/detail/process_handle_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/src/detail/process_handle_windows.cpp -------------------------------------------------------------------------------- /src/detail/throw_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/src/detail/throw_error.cpp -------------------------------------------------------------------------------- /src/detail/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/src/detail/utf8.cpp -------------------------------------------------------------------------------- /src/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/src/environment.cpp -------------------------------------------------------------------------------- /src/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/src/error.cpp -------------------------------------------------------------------------------- /src/ext/cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/src/ext/cmd.cpp -------------------------------------------------------------------------------- /src/ext/cwd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/src/ext/cwd.cpp -------------------------------------------------------------------------------- /src/ext/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/src/ext/env.cpp -------------------------------------------------------------------------------- /src/ext/exe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/src/ext/exe.cpp -------------------------------------------------------------------------------- /src/ext/proc_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/src/ext/proc_info.cpp -------------------------------------------------------------------------------- /src/pid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/src/pid.cpp -------------------------------------------------------------------------------- /src/posix/close_handles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/src/posix/close_handles.cpp -------------------------------------------------------------------------------- /src/shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/src/shell.cpp -------------------------------------------------------------------------------- /src/windows/default_launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/src/windows/default_launcher.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/Jamfile.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/Jamfile.jam -------------------------------------------------------------------------------- /test/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/appveyor.yml -------------------------------------------------------------------------------- /test/v1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/CMakeLists.txt -------------------------------------------------------------------------------- /test/v1/Jamfile.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/Jamfile.jam -------------------------------------------------------------------------------- /test/v1/args_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/args_cmd.cpp -------------------------------------------------------------------------------- /test/v1/args_handling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/args_handling.cpp -------------------------------------------------------------------------------- /test/v1/asio_no_deprecated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/asio_no_deprecated.cpp -------------------------------------------------------------------------------- /test/v1/async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/async.cpp -------------------------------------------------------------------------------- /test/v1/async_fut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/async_fut.cpp -------------------------------------------------------------------------------- /test/v1/async_pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/async_pipe.cpp -------------------------------------------------------------------------------- /test/v1/async_system_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/async_system_fail.cpp -------------------------------------------------------------------------------- /test/v1/async_system_future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/async_system_future.cpp -------------------------------------------------------------------------------- /test/v1/async_system_stackful.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/async_system_stackful.cpp -------------------------------------------------------------------------------- /test/v1/async_system_stackful_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/async_system_stackful_error.cpp -------------------------------------------------------------------------------- /test/v1/async_system_stackful_except.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/async_system_stackful_except.cpp -------------------------------------------------------------------------------- /test/v1/async_system_stackless.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/async_system_stackless.cpp -------------------------------------------------------------------------------- /test/v1/bind_stderr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/bind_stderr.cpp -------------------------------------------------------------------------------- /test/v1/bind_stdin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/bind_stdin.cpp -------------------------------------------------------------------------------- /test/v1/bind_stdin_stdout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/bind_stdin_stdout.cpp -------------------------------------------------------------------------------- /test/v1/bind_stdout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/bind_stdout.cpp -------------------------------------------------------------------------------- /test/v1/bind_stdout_stderr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/bind_stdout_stderr.cpp -------------------------------------------------------------------------------- /test/v1/close_stderr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/close_stderr.cpp -------------------------------------------------------------------------------- /test/v1/close_stdin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/close_stdin.cpp -------------------------------------------------------------------------------- /test/v1/close_stdout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/close_stdout.cpp -------------------------------------------------------------------------------- /test/v1/cmd_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/cmd_test.cpp -------------------------------------------------------------------------------- /test/v1/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/env.cpp -------------------------------------------------------------------------------- /test/v1/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/environment.cpp -------------------------------------------------------------------------------- /test/v1/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/error.cpp -------------------------------------------------------------------------------- /test/v1/exit_argc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/exit_argc.cpp -------------------------------------------------------------------------------- /test/v1/exit_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/exit_code.cpp -------------------------------------------------------------------------------- /test/v1/extensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/extensions.cpp -------------------------------------------------------------------------------- /test/v1/group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/group.cpp -------------------------------------------------------------------------------- /test/v1/group_wait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/group_wait.cpp -------------------------------------------------------------------------------- /test/v1/limit_fd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/limit_fd.cpp -------------------------------------------------------------------------------- /test/v1/multi_ref1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/multi_ref1.cpp -------------------------------------------------------------------------------- /test/v1/multi_ref2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/multi_ref2.cpp -------------------------------------------------------------------------------- /test/v1/no_ansi_apps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/no_ansi_apps.cpp -------------------------------------------------------------------------------- /test/v1/on_exit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/on_exit.cpp -------------------------------------------------------------------------------- /test/v1/on_exit2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/on_exit2.cpp -------------------------------------------------------------------------------- /test/v1/on_exit3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/on_exit3.cpp -------------------------------------------------------------------------------- /test/v1/pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/pipe.cpp -------------------------------------------------------------------------------- /test/v1/pipe_fwd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/pipe_fwd.cpp -------------------------------------------------------------------------------- /test/v1/posix_specific.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/posix_specific.cpp -------------------------------------------------------------------------------- /test/v1/run_exe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/run_exe.cpp -------------------------------------------------------------------------------- /test/v1/run_exe_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/run_exe_path.cpp -------------------------------------------------------------------------------- /test/v1/search_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/search_path.cpp -------------------------------------------------------------------------------- /test/v1/shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/shell.cpp -------------------------------------------------------------------------------- /test/v1/shell_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/shell_path.cpp -------------------------------------------------------------------------------- /test/v1/sparring_partner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/sparring_partner.cpp -------------------------------------------------------------------------------- /test/v1/spawn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/spawn.cpp -------------------------------------------------------------------------------- /test/v1/spawn_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/spawn_fail.cpp -------------------------------------------------------------------------------- /test/v1/start_dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/start_dir.cpp -------------------------------------------------------------------------------- /test/v1/sub_launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/sub_launcher.cpp -------------------------------------------------------------------------------- /test/v1/system_test1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/system_test1.cpp -------------------------------------------------------------------------------- /test/v1/system_test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/system_test2.cpp -------------------------------------------------------------------------------- /test/v1/terminate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/terminate.cpp -------------------------------------------------------------------------------- /test/v1/test-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/v1/throw_on_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/throw_on_error.cpp -------------------------------------------------------------------------------- /test/v1/vfork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/vfork.cpp -------------------------------------------------------------------------------- /test/v1/wait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/wait.cpp -------------------------------------------------------------------------------- /test/v1/wait_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/wait_for.cpp -------------------------------------------------------------------------------- /test/v1/wargs_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/wargs_cmd.cpp -------------------------------------------------------------------------------- /test/v1/windows_specific.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v1/windows_specific.cpp -------------------------------------------------------------------------------- /test/v2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v2/CMakeLists.txt -------------------------------------------------------------------------------- /test/v2/Jamfile.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v2/Jamfile.jam -------------------------------------------------------------------------------- /test/v2/cstring_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v2/cstring_ref.cpp -------------------------------------------------------------------------------- /test/v2/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v2/environment.cpp -------------------------------------------------------------------------------- /test/v2/ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v2/ext.cpp -------------------------------------------------------------------------------- /test/v2/pid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v2/pid.cpp -------------------------------------------------------------------------------- /test/v2/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v2/process.cpp -------------------------------------------------------------------------------- /test/v2/shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v2/shell.cpp -------------------------------------------------------------------------------- /test/v2/target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v2/target.cpp -------------------------------------------------------------------------------- /test/v2/test_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v2/test_impl.cpp -------------------------------------------------------------------------------- /test/v2/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v2/utf8.cpp -------------------------------------------------------------------------------- /test/v2/windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/process/HEAD/test/v2/windows.cpp --------------------------------------------------------------------------------