summaryrefslogtreecommitdiff
path: root/src/basic/process-util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/basic/process-util.h')
-rw-r--r--src/basic/process-util.h52
1 files changed, 33 insertions, 19 deletions
diff --git a/src/basic/process-util.h b/src/basic/process-util.h
index ba81fc66e..8f3a3f233 100644
--- a/src/basic/process-util.h
+++ b/src/basic/process-util.h
@@ -46,13 +46,17 @@ int get_process_state(pid_t pid);
int get_process_comm(pid_t pid, char **name);
int get_process_cmdline(pid_t pid, size_t max_length, bool comm_fallback, char **line);
int get_process_exe(pid_t pid, char **name);
-// UNNEEDED int get_process_uid(pid_t pid, uid_t *uid);
-// UNNEEDED int get_process_gid(pid_t pid, gid_t *gid);
-// UNNEEDED int get_process_capeff(pid_t pid, char **capeff);
-// UNNEEDED int get_process_cwd(pid_t pid, char **cwd);
-// UNNEEDED int get_process_root(pid_t pid, char **root);
-// UNNEEDED int get_process_environ(pid_t pid, char **environ);
-// UNNEEDED int get_process_ppid(pid_t pid, pid_t *ppid);
+
+/// UNNEEDED by elogind
+#if 0
+int get_process_uid(pid_t pid, uid_t *uid);
+int get_process_gid(pid_t pid, gid_t *gid);
+int get_process_capeff(pid_t pid, char **capeff);
+int get_process_cwd(pid_t pid, char **cwd);
+int get_process_root(pid_t pid, char **root);
+int get_process_environ(pid_t pid, char **environ);
+int get_process_ppid(pid_t pid, pid_t *ppid);
+#endif // 0
int wait_for_terminate(pid_t pid, siginfo_t *status);
int wait_for_terminate_and_warn(const char *name, pid_t pid, bool check_exit_code);
@@ -60,9 +64,13 @@ int wait_for_terminate_and_warn(const char *name, pid_t pid, bool check_exit_cod
void sigkill_wait(pid_t *pid);
#define _cleanup_sigkill_wait_ _cleanup_(sigkill_wait)
-// UNNEEDED int kill_and_sigcont(pid_t pid, int sig);
+/// UNNEEDED by elogind
+#if 0
+int kill_and_sigcont(pid_t pid, int sig);
+
+void rename_process(const char name[8]);
+#endif // 0
-// UNNEEDED void rename_process(const char name[8]);
int is_kernel_thread(pid_t pid);
int getenv_for_pid(pid_t pid, const char *field, char **_value);
@@ -72,9 +80,12 @@ bool pid_is_unwaited(pid_t pid);
bool is_main_thread(void);
-// UNNEEDED noreturn void freeze(void);
+/// UNNEEDED by elogind
+#if 0
+noreturn void freeze(void);
-// UNNEEDED bool oom_score_adjust_is_valid(int oa);
+bool oom_score_adjust_is_valid(int oa);
+#endif // 0
#ifndef PERSONALITY_INVALID
/* personality(7) documents that 0xffffffffUL is used for querying the
@@ -83,17 +94,20 @@ bool is_main_thread(void);
#define PERSONALITY_INVALID 0xffffffffLU
#endif
-// UNNEEDED unsigned long personality_from_string(const char *p);
-// UNNEEDED const char *personality_to_string(unsigned long);
+/// UNNEEDED by elogind
+#if 0
+unsigned long personality_from_string(const char *p);
+const char *personality_to_string(unsigned long);
-// UNNEEDED int ioprio_class_to_string_alloc(int i, char **s);
-// UNNEEDED int ioprio_class_from_string(const char *s);
+int ioprio_class_to_string_alloc(int i, char **s);
+int ioprio_class_from_string(const char *s);
-// UNNEEDED const char *sigchld_code_to_string(int i) _const_;
-// UNNEEDED int sigchld_code_from_string(const char *s) _pure_;
+const char *sigchld_code_to_string(int i) _const_;
+int sigchld_code_from_string(const char *s) _pure_;
-// UNNEEDED int sched_policy_to_string_alloc(int i, char **s);
-// UNNEEDED int sched_policy_from_string(const char *s);
+int sched_policy_to_string_alloc(int i, char **s);
+int sched_policy_from_string(const char *s);
+#endif // 0
#define PTR_TO_PID(p) ((pid_t) ((uintptr_t) p))
#define PID_TO_PTR(p) ((void*) ((uintptr_t) p))