aboutsummaryrefslogtreecommitdiffstats
path: root/status.h
diff options
context:
space:
mode:
Diffstat (limited to 'status.h')
-rw-r--r--status.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/status.h b/status.h
new file mode 100644
index 0000000..7d5357e
--- /dev/null
+++ b/status.h
@@ -0,0 +1,14 @@
+#ifndef __STATUS_H__
+#define __STATUS_H__
+
+struct svc_status {
+ /* Main proc */
+ time_t proc_start;
+ pid_t proc_pid;
+ /* Log proc */
+ short has_log;
+ time_t log_start;
+ pid_t log_pid;
+} __packed;
+
+#endif