diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-09-15 14:48:59 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-09-15 14:48:59 +0200 |
commit | 8e12a6aed3d99ac8c140cd56b560f5efeb1c4e1a (patch) | |
tree | 39f251b6aae53cbd767186f8efe3715270c220aa /src/util.h | |
parent | 2e78aa9988425d540a572535fa2e3d68ff519316 (diff) |
util: use waitid() instead of waitpid() everywhere to avoid confusion due to SIGSTOP
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h index 4bea1ecc04..bdd4f15cf2 100644 --- a/src/util.h +++ b/src/util.h @@ -345,7 +345,7 @@ int touch(const char *path); char *unquote(const char *s, const char quote); -int waitpid_loop(pid_t pid, int *status); +int wait_for_terminate(pid_t pid, siginfo_t *status); #define NULSTR_FOREACH(i, l) \ for ((i) = (l); (i) && *(i); (i) = strchr((i), 0)+1) |