Changeset 27838 for branches/tap_branches/Ohana/src/opihi/pcontrol/init.c
- Timestamp:
- May 3, 2010, 8:41:49 AM (16 years ago)
- Location:
- branches/tap_branches
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/tap_branches
- Property svn:mergeinfo changed
-
branches/tap_branches/Ohana
-
Property svn:mergeinfo
set to (toggle deleted branches)
/trunk/Ohana merged eligible /branches/eam_branches/Ohana.20100407 27635-27772 /branches/pap_delete/Ohana 27530-27595
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
branches/tap_branches/Ohana/src/opihi/pcontrol/init.c
r16460 r27838 8 8 int jobstack PROTO((int, char **)); 9 9 int kill_pc PROTO((int, char **)); 10 int machines PROTO((int, char **)); 11 int parameters PROTO((int, char **)); 12 int run PROTO((int, char **)); 10 13 int status PROTO((int, char **)); 11 int run PROTO((int, char **));12 14 int stderr_pc PROTO((int, char **)); 13 15 int stdout_pc PROTO((int, char **)); … … 19 21 20 22 static Command cmds[] = { 21 {1, "host", host, "add / delete / modify host"}, 22 {1, "hoststack", hoststack, "list hosts for a single stack"}, 23 {1, "status", status, "get system status"}, 24 {1, "stop", run, "stop controller processing"}, 25 {1, "run", run, "set controller runlevel"}, 26 {1, "verbose", verbose, "set the verbose mode for job"}, 27 {1, "version", version, "show version information"}, 28 {1, "job", job, "add job"}, 29 {1, "jobstack", jobstack, "list jobs for a single stack"}, 30 {1, "check", check, "get job or host status"}, 31 {1, "delete", delete, "delete job"}, 32 {1, "kill", kill_pc, "kill job"}, 33 {1, "stderr", stderr_pc, "get stderr buffer for job"}, 34 {1, "stdout", stdout_pc, "get stdout buffer for job"}, 35 # ifndef THREADED 36 {1, "pulse", pulse, "set system pulse"}, 23 {1, "check", check, "get job or host status"}, 24 {1, "delete", delete, "delete job"}, 25 {1, "host", host, "add / delete / modify host"}, 26 {1, "hoststack", hoststack, "list hosts for a single stack"}, 27 {1, "job", job, "add job"}, 28 {1, "jobstack", jobstack, "list jobs for a single stack"}, 29 {1, "kill", kill_pc, "kill job"}, 30 {1, "machines", machines, "list machines"}, 31 {1, "parameters", parameters, "get / set system parameters"}, 32 {1, "run", run, "set controller runlevel"}, 33 {1, "status", status, "get system status"}, 34 {1, "stderr", stderr_pc, "get stderr buffer for job"}, 35 {1, "stdout", stdout_pc, "get stdout buffer for job"}, 36 {1, "stop", run, "stop controller processing"}, 37 {1, "verbose", verbose, "set the verbose mode for job"}, 38 {1, "version", version, "show version information"}, 39 # ifndef THREADED 40 {1, "pulse", pulse, "set system pulse"}, 37 41 # endif 38 42 }; … … 47 51 InitJobStacks (); 48 52 InitHostStacks (); 53 InitMachines (); 49 54 } 50 55 … … 52 57 FreeJobStacks (); 53 58 FreeHostStacks (); 59 FreeMachines (); 54 60 }
Note:
See TracChangeset
for help on using the changeset viewer.
