|
@@ -10,8 +10,6 @@
|
|
|
#include <sys/wait.h>
|
|
|
#include <unistd.h>
|
|
|
|
|
|
-//#define SPAWN_MULTIPLE_VIRTUAL_CONSOLES
|
|
|
-
|
|
|
void sigchld_handler(int)
|
|
|
{
|
|
|
int status = 0;
|
|
@@ -101,10 +99,6 @@ int main(int, char**)
|
|
|
|
|
|
// NOTE: We don't start anything on tty0 since that's the "active" TTY while WindowServer is up.
|
|
|
start_process("/bin/TTYServer", { "tty1" }, highest_prio, "/dev/tty1");
|
|
|
-#ifdef SPAWN_MULTIPLE_VIRTUAL_CONSOLES
|
|
|
- start_process("/bin/TTYServer", { "tty2" }, highest_prio, "/dev/tty2");
|
|
|
- start_process("/bin/TTYServer", { "tty3" }, highest_prio, "/dev/tty3");
|
|
|
-#endif
|
|
|
|
|
|
// Drop privileges.
|
|
|
setgid(100);
|