f9ccfca2a1
-script argument to service for crash recovery scripts -config argument to service for driver resource configuration restart command in service to restart a driver after a crash (for use in crash recovery scripts). down and refresh now take labels instead of pids. verious changes in rs to make this work.
22 lines
651 B
C
22 lines
651 B
C
/* Function prototypes. */
|
|
|
|
/* exec.c */
|
|
_PROTOTYPE( int dev_execve, (int proc_e,
|
|
char *exec, size_t exec_len, char *argv[], char **env));
|
|
|
|
/* main.c */
|
|
_PROTOTYPE( int main, (void));
|
|
|
|
/* manager.c */
|
|
_PROTOTYPE( int do_up, (message *m, int do_copy, int flags));
|
|
_PROTOTYPE( int do_start, (message *m));
|
|
_PROTOTYPE( int do_down, (message *m));
|
|
_PROTOTYPE( int do_refresh, (message *m));
|
|
_PROTOTYPE( int do_rescue, (message *m));
|
|
_PROTOTYPE( int do_restart, (message *m));
|
|
_PROTOTYPE( int do_shutdown, (message *m));
|
|
_PROTOTYPE( void do_period, (message *m));
|
|
_PROTOTYPE( void do_exit, (message *m));
|
|
_PROTOTYPE( int do_getsysinfo, (message *m));
|
|
|
|
|