Made StartPiped use const argument

This commit is contained in:
Thulinma 2016-12-17 17:21:08 +01:00
parent d413866911
commit 1b80cfbb20
2 changed files with 4 additions and 3 deletions

View file

@ -30,7 +30,7 @@ namespace Util {
static void setHandler();
static std::string getOutputOf(char * const * argv);
static std::string getOutputOf(std::deque<std::string> & argDeq);
static pid_t StartPiped(char * const * argv, int * fdin, int * fdout, int * fderr);
static pid_t StartPiped(const char * const * argv, int * fdin, int * fdout, int * fderr);
static pid_t StartPiped(std::deque<std::string> & argDeq, int * fdin, int * fdout, int * fderr);
static void Stop(pid_t name);
static void Murder(pid_t name);