aboutsummaryrefslogtreecommitdiff
path: root/src/pies.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pies.h')
-rw-r--r--src/pies.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/pies.h b/src/pies.h
index a679afd..fc4f59c 100644
--- a/src/pies.h
+++ b/src/pies.h
@@ -183,8 +183,6 @@ enum pies_comp_mode
183 pies_comp_respawn = pies_comp_exec, 183 pies_comp_respawn = pies_comp_exec,
184 }; 184 };
185 185
186#define is_sysvinit(m) ((m)>=pies_mark_sysvinit)
187
188#define CF_DISABLED 0x001 /* The componenet is disabled */ 186#define CF_DISABLED 0x001 /* The componenet is disabled */
189#define CF_PRECIOUS 0x002 /* The component is precious (should not 187#define CF_PRECIOUS 0x002 /* The component is precious (should not
190 be disabled) */ 188 be disabled) */
@@ -253,6 +251,8 @@ struct component
253 struct action act_temp; /* Auxiliary object used during configuration */ 251 struct action act_temp; /* Auxiliary object used during configuration */
254}; 252};
255 253
254#define is_sysvinit(cp) ((cp)->mode >= pies_mark_sysvinit || (cp)->runlevels)
255
256union pies_sockaddr_storage 256union pies_sockaddr_storage
257{ 257{
258 struct sockaddr s; 258 struct sockaddr s;
@@ -301,6 +301,9 @@ void progman_run_comp (struct component *comp, int fd,
301 301
302void progman_iterate_comp (int (*fun) (struct component *, void *), 302void progman_iterate_comp (int (*fun) (struct component *, void *),
303 void *data); 303 void *data);
304void progman_sysvinit_enable (int (*fun) (struct component *, int, void *),
305 void *data);
306
304void fd_report (int fd, const char *msg); 307void fd_report (int fd, const char *msg);
305 308
306int check_acl (pies_acl_t acl, struct sockaddr *s, socklen_t salen); 309int check_acl (pies_acl_t acl, struct sockaddr *s, socklen_t salen);
@@ -450,8 +453,8 @@ struct inetd_builtin
450struct inetd_builtin *inetd_builtin_lookup (const char *service, int socktype); 453struct inetd_builtin *inetd_builtin_lookup (const char *service, int socktype);
451 454
452/* sysvinit.c */ 455/* sysvinit.c */
453int runlevel_match (struct component *comp); 456void sysvinit_begin (void);
454void inittrans (void); 457int inittrans (void);
455int is_comp_wait (struct component *comp); 458int is_comp_wait (struct component *comp);
456 459
457 460

Return to:

Send suggestions and report system problems to the System administrator.