Tweak default hostname.

This commit is contained in:
Andreas Kling 2018-11-17 00:23:39 +01:00
parent 9d05f6b7a7
commit bb9766ee17
Notes: sideshowbarker 2024-07-19 16:10:00 +09:00

View file

@ -51,7 +51,7 @@ void Process::initialize()
#endif
next_pid = 0;
g_processes = new InlineLinkedList<Process>;
s_hostname = new String("birx");
s_hostname = new String("courage");
Scheduler::initialize();
}