We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fb8b6a commit 402b13cCopy full SHA for 402b13c
patches/mlibc/mlibc.patch
@@ -1,4 +1,4 @@
1
-From 4b435231bee99fa0da6f9498c5342488e02a7bbd Mon Sep 17 00:00:00 2001
+From c7e816f64f5dc357cfd6399413ac38098de6234a Mon Sep 17 00:00:00 2001
2
From: Andy-Python-Programmer <[email protected]>
3
Date: Thu, 10 Feb 2022 19:12:25 +1100
4
Subject: [PATCH] yes
src/aero_kernel/src/userland/task.rs
@@ -516,8 +516,9 @@ impl Task {
516
parent.remove_child(self);
517
parent.zombies.add_zombie(self.this());
518
519
- // TODO: If the parent process is the process leader then
520
- // signal SIGCHLD to the parent process.
+ if self.is_process_leader() {
+ parent.signal(aero_syscall::signal::SIGCHLD);
521
+ }
522
}
523
524
0 commit comments