Changeset 13541 for trunk/Ohana/src/opihi/pantasks/init.c
- Timestamp:
- May 30, 2007, 12:14:21 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/opihi/pantasks/init.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/pantasks/init.c
r12467 r13541 17 17 int stop PROTO((int, char **)); 18 18 int halt PROTO((int, char **)); 19 int flush_jobs PROTO((int, char **)); 19 20 int pulse PROTO((int, char **)); 20 int showtask PROTO((int, char **));21 int showtask PROTO((int, char **)); 21 22 int status_sys PROTO((int, char **)); 22 23 int kill_job PROTO((int, char **)); … … 27 28 28 29 static Command cmds[] = { 30 {"active", task_active, "set the active state of a task"}, 31 {"command", task_command, "define executed command for a task"}, 29 32 {"controller", controller, "controller commands"}, 30 {"task", task, "define a schedulable task"}, 33 {"delete", delete_job, "delete job"}, 34 {"halt", halt, "halt the scheduler (no job harvesting)"}, 31 35 {"host", task_host, "define host machine for a task"}, 36 {"ipptool2book", ipptool2book, "convert queue with ipptool output to book"}, 37 {"kill", kill_job, "kill job"}, 32 38 {"nmax", task_nmax, "define maximum number of jobs for a task"}, 33 39 {"npending", task_npending, "define maximum number of outstanding jobs for a task"}, 34 {"active", task_active, "set the active state of a task"},35 {"trange", task_trange, "define valid/invalid time periods for a task"},36 {"task.exit", task_macros, "define exit macros for a task"},37 {"task.exec", task_macros, "define pre-exec macro for a task"},38 {"command", task_command, "define executed command for a task"},39 40 {"options", task_options, "define optional variables associated with the job task"}, 40 41 {"periods", task_periods, "define time scales for a task"}, 41 {"stdout", task_stdout, "define a file for the job stdout dump"}, 42 {"stderr", task_stderr, "define a file for the job stderr dump"}, 42 {"pulse", pulse, "set the scheduler update period"}, 43 43 {"run", run, "run the scheduler"}, 44 {"stop", stop, "stop the scheduler (continue job harvesting)"}, 45 {"halt", halt, "halt the scheduler (no job harvesting)"}, 46 {"pulse", pulse, "set the scheduler update period"}, 44 {"flush", flush_jobs, "flush all jobs from the queue"}, 47 45 {"showtask", showtask, "list a task"}, 48 46 {"status", status_sys, "get system or task status"}, 49 {"kill", kill_job, "kill job"}, 50 {"delete", delete_job, "delete job"}, 47 {"stderr", task_stderr, "define a file for the job stderr dump"}, 48 {"stdout", task_stdout, "define a file for the job stdout dump"}, 49 {"stop", stop, "stop the scheduler (continue job harvesting)"}, 50 {"task", task, "define a schedulable task"}, 51 {"task.exec", task_macros, "define pre-exec macro for a task"}, 52 {"task.exit", task_macros, "define exit macros for a task"}, 53 {"trange", task_trange, "define valid/invalid time periods for a task"}, 54 {"verbose", verbose, "set/toggle verbose mode"}, 51 55 {"version", version, "show version information"}, 52 {"verbose", verbose, "set/toggle verbose mode"},53 {"ipptool2book", ipptool2book, "convert queue with ipptool output to book"},54 56 }; 55 57
Note:
See TracChangeset
for help on using the changeset viewer.
