aboutsummaryrefslogtreecommitdiff
path: root/libbutl/process.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-07-27 18:00:16 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-07-27 18:00:16 +0300
commit822059e4e69547f8e97a1cd219912f55826b0414 (patch)
treedc99f504046fb96b5cc3b1189c3d4107c03f96b7 /libbutl/process.hxx
parent40426fe405dc795668351cb41bd50d8d08e5b094 (diff)
Rename process_start() and process_run() overloads
Diffstat (limited to 'libbutl/process.hxx')
-rw-r--r--libbutl/process.hxx26
1 files changed, 13 insertions, 13 deletions
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