We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 125dd2a commit 376b0d7Copy full SHA for 376b0d7
1 file changed
kernel/kernel.py
@@ -75,6 +75,7 @@ async def scheduler():
75
while True:
76
for pid, p in procs.items():
77
if p.server and p.state == CLOSED:
78
+ p.state = RUNNING
79
asyncio.create_task(run_proc(pid))
80
81
active_procs = [p for p in procs.values() if p.state == RUNNING]
@@ -98,4 +99,5 @@ def boot():
98
99
connect(p_id, 1, reply_bus, 0)
100
connect(fs_pid, p_id, reply_bus, 1)
101
- print(f"[BOOT]: {len(procs)} processes linked via Pech-pipes.")
102
+
103
+ print(f"[BOOT]: {len(procs)} processes linked via Pech-pipes.")
0 commit comments