diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-27 14:24:58 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-27 14:24:58 +0100 |
commit | 7b3e062cb6872e28ef5a2e069810070e28bbe0cd (patch) | |
tree | 19a3f36b8d888047c39bd583e21c6e5955f07b62 /src/basic/process-util.h | |
parent | 5fd9b2c5467b0a42ccdabc7eb8e516d512609a8e (diff) |
process-util: move a couple of process-related calls over
Diffstat (limited to 'src/basic/process-util.h')
-rw-r--r-- | src/basic/process-util.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/basic/process-util.h b/src/basic/process-util.h index 85fc8d8eb7..72633ebf70 100644 --- a/src/basic/process-util.h +++ b/src/basic/process-util.h @@ -27,6 +27,7 @@ #include <signal.h> #include "formats-util.h" +#include "macro.h" #define procfs_file_alloca(pid, field) \ ({ \ @@ -71,5 +72,28 @@ bool pid_is_unwaited(pid_t pid); bool is_main_thread(void); +noreturn void freeze(void); + +bool oom_score_adjust_is_valid(int oa); + +#ifndef PERSONALITY_INVALID +/* personality(7) documents that 0xffffffffUL is used for querying the + * current personality, hence let's use that here as error + * indicator. */ +#define PERSONALITY_INVALID 0xffffffffLU +#endif + +unsigned long personality_from_string(const char *p); +const char *personality_to_string(unsigned long); + +int ioprio_class_to_string_alloc(int i, char **s); +int ioprio_class_from_string(const char *s); + +const char *sigchld_code_to_string(int i) _const_; +int sigchld_code_from_string(const char *s) _pure_; + +int sched_policy_to_string_alloc(int i, char **s); +int sched_policy_from_string(const char *s); + #define PTR_TO_PID(p) ((pid_t) ((uintptr_t) p)) #define PID_TO_PTR(p) ((void*) ((uintptr_t) p)) |