chiark / gitweb /
shutdown: complain if process excluded from killing spree runs of the same rootfs...
[elogind.git] / src / basic / process-util.h
index ba73b00c2f23be03ce079d89e59702145054bd25..dc6d776f8f3019a25eae88053cba5d5b9617bb81 100644 (file)
@@ -75,6 +75,7 @@ int getenv_for_pid(pid_t pid, const char *field, char **_value);
 
 bool pid_is_alive(pid_t pid);
 bool pid_is_unwaited(pid_t pid);
+int pid_from_same_root_fs(pid_t pid);
 
 bool is_main_thread(void);
 
@@ -107,3 +108,5 @@ 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))
+
+void valgrind_summary_hack(void);