move the instance data structure to instance.h
authorFelix Fietkau <nbd@openwrt.org>
Sun, 10 Jun 2012 15:12:56 +0000 (17:12 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Sun, 10 Jun 2012 15:12:56 +0000 (17:12 +0200)
instance.h
service.h

index 8016a44..668dde0 100644 (file)
@@ -1,6 +1,19 @@
 #ifndef __PROCD_INSTANCE_H
 #define __PROCD_INSTANCE_H
 
+#include <libubox/vlist.h>
+#include <libubox/uloop.h>
+
+struct service_instance {
+       struct vlist_node node;
+       const char *name;
+
+       bool restart;
+       struct blob_attr *config;
+       struct uloop_process proc;
+       struct uloop_timeout timeout;
+};
+
 void instance_start(struct service_instance *in);
 void instance_stop(struct service_instance *in, bool restart);
 bool instance_update(struct service_instance *in, struct service_instance *in_new);
index 96175c4..527e511 100644 (file)
--- a/service.h
+++ b/service.h
@@ -1,3 +1,6 @@
+#ifndef __PROCD_SERVICE_H
+#define __PROCD_SERVICE_H
+
 #include <libubox/avl.h>
 #include <libubox/vlist.h>
 
@@ -11,13 +14,4 @@ struct service {
        struct vlist_tree instances;
 };
 
-struct service_instance {
-       struct vlist_node node;
-       const char *name;
-
-       bool restart;
-       struct blob_attr *config;
-       struct uloop_process proc;
-       struct uloop_timeout timeout;
-};
-
+#endif