diff options
Diffstat (limited to 'src/master/service-anvil.h')
-rw-r--r-- | src/master/service-anvil.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/master/service-anvil.h b/src/master/service-anvil.h new file mode 100644 index 0000000..b749134 --- /dev/null +++ b/src/master/service-anvil.h @@ -0,0 +1,36 @@ +#ifndef SERVICE_ANVIL_H +#define SERVICE_ANVIL_H + +struct service_anvil_global { + pid_t pid; + unsigned int uid; + + int status_fd[2]; + /* passed to child processes */ + int blocking_fd[2]; + /* used by master process to notify about dying processes */ + int nonblocking_fd[2]; + /* master process sends new log fds to anvil via this unix socket */ + int log_fdpass_fd[2]; + + struct service_process_notify *kills; + struct io *io_blocking, *io_nonblocking; + + unsigned int process_count; + /* anvil crashed and we're now restarting it */ + bool restarted; +}; + +extern struct service_anvil_global *service_anvil_global; + +void service_anvil_monitor_start(struct service_list *service_list); + +void service_anvil_process_created(struct service_process *process); +void service_anvil_process_destroyed(struct service_process *process); + +void service_anvil_send_log_fd(void); + +void service_anvil_global_init(void); +void service_anvil_global_deinit(void); + +#endif |