diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-02-17 18:28:53 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-02-18 02:51:47 +0100 |
commit | 9f5650aecb22a1d864b2c0b749910556795f1490 (patch) | |
tree | 62283b6837299eff161d62438372ec6d54d6b451 /src/shared/util.h | |
parent | ed7e5fe37d7e3392538844abadbb2903f4d2540f (diff) |
util: generalize code that checks whether PIDs are alive or unwaited for
Diffstat (limited to 'src/shared/util.h')
-rw-r--r-- | src/shared/util.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shared/util.h b/src/shared/util.h index 7c88dad631..a41348e32e 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -858,7 +858,8 @@ int container_get_leader(const char *machine, pid_t *pid); int namespace_open(pid_t pid, int *pidns_fd, int *mntns_fd, int *root_fd); int namespace_enter(int pidns_fd, int mntns_fd, int root_fd); -bool pid_valid(pid_t pid); +bool pid_is_alive(pid_t pid); +bool pid_is_unwaited(pid_t pid); int getpeercred(int fd, struct ucred *ucred); int getpeersec(int fd, char **ret); |