diff options
Diffstat (limited to 'lib/include/service.h')
-rw-r--r-- | lib/include/service.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/include/service.h b/lib/include/service.h index 49c5432..03d768e 100644 --- a/lib/include/service.h +++ b/lib/include/service.h @@ -51,6 +51,11 @@ enum { RDSVC_NO_DEPS = 0x08, /* do not store dependencies */ }; +enum { + /* truncate stdout */ + SVC_FLAG_TRUNCATE_OUT = 0x01, +}; + typedef struct exec_t { struct exec_t *next; int argc; /* number of elements in argument vector */ @@ -67,6 +72,7 @@ typedef struct service_t { char *desc; /* description string */ char *ctty; /* controlling tty or log file */ int rspwn_limit; /* maximum respawn count */ + unsigned int flags; /* SVC_FLAG_* bit field */ /* linked list of command lines to execute */ exec_t *exec; |