Changeset 12467
- Timestamp:
- Mar 15, 2007, 3:55:07 PM (19 years ago)
- Location:
- trunk/Ohana/src/opihi/pantasks
- Files:
-
- 1 added
- 2 edited
-
controller.c (modified) (1 diff)
-
controller_jobstack.c (added)
-
init.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/pantasks/controller.c
r10694 r12467 1 1 # include "pantasks.h" 2 2 3 int controller_host PROTO((int, char **)); 4 int controller_exit PROTO((int, char **)); 5 int controller_status PROTO((int, char **)); 6 int controller_run PROTO((int, char **)); 7 int controller_stop PROTO((int, char **)); 8 int controller_check PROTO((int, char **)); 9 int controller_output PROTO((int, char **)); 10 int controller_pulse PROTO((int, char **)); 3 int controller_host PROTO((int, char **)); 4 int controller_exit PROTO((int, char **)); 5 int controller_status PROTO((int, char **)); 6 int controller_jobstack PROTO((int, char **)); 7 int controller_run PROTO((int, char **)); 8 int controller_stop PROTO((int, char **)); 9 int controller_check PROTO((int, char **)); 10 int controller_output PROTO((int, char **)); 11 int controller_pulse PROTO((int, char **)); 11 12 12 13 static Command controller_cmds[] = { 13 {"exit", controller_exit, "shutdown controller"}, 14 {"host", controller_host, "define host for controller"}, 15 {"check", controller_check, "check controller host/job"}, 16 {"run", controller_run, "start controller operation / set run levels"}, 17 {"stop", controller_run, "stop controller (no disconnect)"}, 18 {"status", controller_status, "check controller status"}, 19 {"output", controller_output, "print controller output"}, 20 {"pulse", controller_pulse, "set controller pulse"}, 14 {"exit", controller_exit, "shutdown controller"}, 15 {"host", controller_host, "define host for controller"}, 16 {"check", controller_check, "check controller host/job"}, 17 {"run", controller_run, "start controller operation / set run levels"}, 18 {"stop", controller_run, "stop controller (no disconnect)"}, 19 {"status", controller_status, "check controller status"}, 20 {"jobstack", controller_jobstack, "check controller status"}, 21 {"output", controller_output, "print controller output"}, 22 {"pulse", controller_pulse, "set controller pulse"}, 21 23 }; 22 24 -
trunk/Ohana/src/opihi/pantasks/init.c
r11317 r12467 18 18 int halt PROTO((int, char **)); 19 19 int pulse PROTO((int, char **)); 20 int showtask PROTO((int, char **)); 20 21 int status_sys PROTO((int, char **)); 21 22 int kill_job PROTO((int, char **)); … … 44 45 {"halt", halt, "halt the scheduler (no job harvesting)"}, 45 46 {"pulse", pulse, "set the scheduler update period"}, 46 {"status", status_sys, "get system status"}, 47 {"showtask", showtask, "list a task"}, 48 {"status", status_sys, "get system or task status"}, 47 49 {"kill", kill_job, "kill job"}, 48 50 {"delete", delete_job, "delete job"},
Note:
See TracChangeset
for help on using the changeset viewer.
