Fixed: Typo
This commit is contained in:
parent
4d99b9d3bc
commit
70c47de7c8
1 changed files with 2 additions and 2 deletions
|
@ -742,7 +742,7 @@ bool launchProgram(const std::string &programName, const std::string &arguments,
|
||||||
//
|
//
|
||||||
// But it works fine on my GNU/Linux so I do this because it's easier :) and I don't know exactly
|
// But it works fine on my GNU/Linux so I do this because it's easier :) and I don't know exactly
|
||||||
// what to do to be portable.
|
// what to do to be portable.
|
||||||
signal(SIGCHLD,SIG_IGN);
|
signal(SIGCHLD, SIG_IGN);
|
||||||
|
|
||||||
firstLaunchProgram = false;
|
firstLaunchProgram = false;
|
||||||
}
|
}
|
||||||
|
@ -771,7 +771,7 @@ bool launchProgram(const std::string &programName, const std::string &arguments,
|
||||||
|
|
||||||
int status = vfork ();
|
int status = vfork ();
|
||||||
/////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////
|
||||||
/// WARNING : NO MORE INSTRCUTION AFTER VFORK !
|
/// WARNING : NO MORE INSTRUCTION AFTER VFORK !
|
||||||
/// READ VFORK manual
|
/// READ VFORK manual
|
||||||
/////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////
|
||||||
if (status == -1)
|
if (status == -1)
|
||||||
|
|
Loading…
Reference in a new issue