浏览代码

Unbreak the spawn stress test.

Andreas Kling 6 年之前
父节点
当前提交
2f010e941c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Kernel/init.cpp

+ 1 - 1
Kernel/init.cpp

@@ -100,7 +100,7 @@ static void init_stage2()
 #endif
 
 #ifdef STRESS_TEST_SPAWNING
-    Process::create_kernel_process(spawn_stress, "spawn_stress");
+    Process::create_kernel_process("spawn_stress", spawn_stress);
 #endif
 
     current->sys$exit(0);