chiark / gitweb /
journal: introduce log target 'journal' for executed processes
[elogind.git] / src / service.h
index e3cb431cfec8ea77c86a8f8ccd1dc9f9468ba11a..2102826723686f63461d379504f15fde6b257a6b 100644 (file)
@@ -25,6 +25,7 @@
 typedef struct Service Service;
 
 #include "unit.h"
+#include "path.h"
 #include "ratelimit.h"
 
 typedef enum ServiceState {
@@ -132,6 +133,7 @@ struct Service {
         bool reload_failure:1;
 
         bool main_pid_known:1;
+        bool main_pid_alien:1;
         bool bus_name_good:1;
         bool forbid_restart:1;
         bool got_socket_fd:1;
@@ -143,6 +145,7 @@ struct Service {
 
         char *sysv_path;
         char *sysv_runlevels;
+        usec_t sysv_mtime;
 #endif
 
         char *bus_name;
@@ -155,6 +158,7 @@ struct Service {
         Set *configured_sockets;
 
         Watch timer_watch;
+        PathSpec *pid_file_pathspec;
 
         NotifyAccess notify_access;
 };