]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/core/killall.c
Add SPDX license identifiers to source files under the LGPL
[thirdparty/systemd.git] / src / core / killall.c
index 5e914e478d3d90796cbeaa37dd13c04aea337c0e..e77763e161c6fb09a08e6061f84c68dac79b8182 100644 (file)
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
 /***
   This file is part of systemd.
 
@@ -129,9 +130,9 @@ static void wait_for_children(Set *pids, sigset_t *mask) {
                  * might not be our child. */
                 SET_FOREACH(p, pids, i) {
 
-                        /* We misuse getpgid as a check whether a
-                         * process still exists. */
-                        if (getpgid(PTR_TO_PID(p)) >= 0)
+                        /* kill(pid, 0) sends no signal, but it tells
+                         * us whether the process still exists. */
+                        if (kill(PTR_TO_PID(p), 0) == 0)
                                 continue;
 
                         if (errno != ESRCH)