]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
process-util: slightly update comment in freeze() 35975/head
authorLennart Poettering <lennart@poettering.net>
Wed, 15 Jan 2025 16:24:14 +0000 (17:24 +0100)
committerLennart Poettering <lennart@poettering.net>
Thu, 16 Jan 2025 10:55:21 +0000 (11:55 +0100)
src/basic/process-util.c

index 94d8681c293412388f30965ded9f989c84a51f83..21e296864a941a1fa5b6dddf20a07a477211f5ff 100644 (file)
@@ -1997,7 +1997,8 @@ _noreturn_ void freeze(void) {
                         break;
         }
 
-        /* waitid() failed with an unexpected error, things are really borked. Freeze now! */
+        /* waitid() failed with an ECHLD error (because there are no left-over child processes) or any other
+         * (unexpected) error. Freeze for good now! */
         for (;;)
                 pause();
 }