1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:27:36 +00:00

SystemServer: Remove always-true "if (pid == 0)" check

This code should probably be structured differently to handle things
like children dying, etc. But not right now.

Found by PVS-Studio.
This commit is contained in:
Andreas Kling 2019-08-01 14:08:21 +02:00
parent 673a98258b
commit 1c50dce7d2

View file

@ -1,11 +1,11 @@
#include <AK/Assertions.h> #include <AK/Assertions.h>
#include <LibCore/CFile.h>
#include <errno.h> #include <errno.h>
#include <sched.h> #include <sched.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <sys/types.h> #include <sys/types.h>
#include <unistd.h> #include <unistd.h>
#include <LibCore/CFile.h>
void start_process(const char* prog, int prio) void start_process(const char* prog, int prio)
{ {
@ -26,7 +26,6 @@ void start_process(const char* prog, int prio)
} }
while (true) { while (true) {
if (pid == 0) {
dbgprintf("Executing for %s... at prio %d\n", prog, prio); dbgprintf("Executing for %s... at prio %d\n", prog, prio);
struct sched_param p; struct sched_param p;
p.sched_priority = prio; p.sched_priority = prio;
@ -42,9 +41,6 @@ void start_process(const char* prog, int prio)
continue; continue;
} }
break; break;
} else {
break;
}
} }
} }