diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-27 14:01:48 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-27 14:01:48 +0100 |
commit | 6bc73acb01e2782f0ef3ec70dde3dc3f5b5da081 (patch) | |
tree | ee1deb8ffaa6ab0b293a331973b562ea5c7a842c /src/core/cgroup.c | |
parent | 405f8907b9da158b8548a4d9b85871406fcc2801 (diff) |
process-util: rename get_parent_of_pid() → get_process_ppid()
In order to match the other get_process_xyz() calls.
Diffstat (limited to 'src/core/cgroup.c')
-rw-r--r-- | src/core/cgroup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/cgroup.c b/src/core/cgroup.c index 90cee12be7..70f6d4af0f 100644 --- a/src/core/cgroup.c +++ b/src/core/cgroup.c @@ -1208,7 +1208,7 @@ int unit_search_main_pid(Unit *u, pid_t *ret) { continue; /* Ignore processes that aren't our kids */ - if (get_parent_of_pid(npid, &ppid) >= 0 && ppid != mypid) + if (get_process_ppid(npid, &ppid) >= 0 && ppid != mypid) continue; if (pid != 0) |