Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Silence process exit
  • Loading branch information
djphoenix committed May 26, 2019
1 parent d6d7926 commit a9f723f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/process/process.cpp
Expand Up @@ -334,7 +334,7 @@ void Process::startup() {
}

void Process::exit(int code) {
printf("EXIT %d\n", code);
(void)code; // TODO: handle
for (size_t i = 0; i < threads.getCount(); i++) {
ProcessManager::getManager()->dequeueThread(threads[i]);
}
Expand Down

0 comments on commit a9f723f

Please sign in to comment.