Skip to content

Commit

Permalink
Update bettersystem.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertBColton committed Jul 4, 2020
1 parent 25c0005 commit 08e2ce1
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions CompilerSource/general/bettersystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -410,15 +410,6 @@ void myReplace(std::string& str, const std::string& oldStr, const std::string& n
waitpid(-fk,&result,__WALL);
break;
}
if (WIFEXITED(result)) {
std::cout << "exited, status=" << WEXITSTATUS(result) << std::endl;
} else if (WIFSIGNALED(result)) {
std::cout << "killed by signal " << WTERMSIG(result) << std::endl;
} else if (WIFSTOPPED(result)) {
std::cout << "stopped by signal " << WSTOPSIG(result) << std::endl;
} else if (WIFCONTINUED(result)) {
std::cout << "continued" << std::endl;
}
usleep(10000); // hundredth of a second
}
for (char** i = argv+1; *i; i++)
Expand Down

0 comments on commit 08e2ce1

Please sign in to comment.