1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-28 02:50:16 +03:00

process-util: slightly update comment in freeze()

This commit is contained in:
Lennart Poettering 2025-01-15 17:24:14 +01:00
parent d6267b9b18
commit 277255e814

View 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();
}