blob: ccf63dd277ab9c98ee34ec8ea4459631237981c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef foosystemdhfoo
#define foosystemdhfoo
char *systemd_service_object_path(struct cfg *cfg, const char *service);
void systemd_delete(struct cfg *cfg);
bool systemd_service_running(struct cfg *cfg, struct server *server);
bool systemd_service_stop(struct cfg *cfg, struct server *server);
bool systemd_service_start(struct cfg *cfg, struct server *server);
/*
void idle_refdump(struct idle *idle);
void idle_delete(struct cfg *cfg, struct server *server);
void idle_init(struct cfg *cfg, struct server *server);
*/
#endif
|