procd: service gets deleted when its last instance is freed
[project/procd.git] / service / service.h
index c3f2964..cc629b1 100644 (file)
@@ -40,6 +40,7 @@ struct validate {
 struct service {
        struct avl_node avl;
        const char *name;
+       bool deleted;
 
        struct blob_attr *trigger;
        struct vlist_tree instances;
@@ -50,7 +51,10 @@ void service_validate_add(struct service *s, struct blob_attr *attr);
 void service_validate_dump(struct blob_buf *b, struct service *s);
 void service_validate_dump_all(struct blob_buf *b, char *p, char *s);
 int service_start_early(char *name, char *cmdline);
+void service_stopped(struct service *s);
 void service_validate_del(struct service *s);
 void service_event(const char *type, const char *service, const char *instance);
 
+
+
 #endif