From 822059e4e69547f8e97a1cd219912f55826b0414 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 27 Jul 2017 18:00:16 +0300 Subject: Rename process_start() and process_run() overloads --- libbutl/process.hxx | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'libbutl/process.hxx') diff --git a/libbutl/process.hxx b/libbutl/process.hxx index ee17207..cd692ca 100644 --- a/libbutl/process.hxx +++ b/libbutl/process.hxx @@ -397,7 +397,7 @@ namespace butl // read from /dev/null, stdout redirect to stderr, and inherit the parent's // stderr. // - // process_run (..., fdnull (), 2, 2, ...) + // process_run (fdnull (), 2, 2, ...) // // The P argument is the program path. It can be anything that can be passed // to process::path_search() (const char*, std::string, path) or the @@ -504,12 +504,12 @@ namespace butl typename E, typename... A> process_exit - process_run (const C&, - I&& in, - O&& out, - E&& err, - const process_env&, - A&&... args); + process_run_callback (const C&, + I&& in, + O&& out, + E&& err, + const process_env&, + A&&... args); // Versions that start the process without waiting. // @@ -530,12 +530,12 @@ namespace butl typename E, typename... A> process - process_start (const C&, - I&& in, - O&& out, - E&& err, - const process_env&, - A&&... args); + process_start_callback (const C&, + I&& in, + O&& out, + E&& err, + const process_env&, + A&&... args); // Conversion of types to their C string representations. Can be overloaded // (including via ADL) for custom types. The default implementation calls -- cgit v1.1