add blobmsg list helpers
[project/procd.git] / instance.h
1 #ifndef __PROCD_INSTANCE_H
2 #define __PROCD_INSTANCE_H
3
4 void instance_start(struct service_instance *in);
5 void instance_stop(struct service_instance *in, bool restart);
6 bool instance_update(struct service_instance *in, struct service_instance *in_new);
7 void instance_init(struct service_instance *in, struct blob_attr *config);
8 void instance_free(struct service_instance *in);
9
10 #endif