Changeset 8548 for trunk/Ohana/src/opihi/pantasks/init_server.c
- Timestamp:
- Aug 23, 2006, 5:31:41 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/opihi/pantasks/init_server.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/pantasks/init_server.c
r7960 r8548 8 8 int task_macros PROTO((int, char **)); 9 9 int task_command PROTO((int, char **)); 10 int task_options PROTO((int, char **)); 10 11 int task_periods PROTO((int, char **)); 11 int run PROTO((int, char **));12 int stop PROTO((int, char **));13 12 int pulse PROTO((int, char **)); 14 13 int status_server PROTO((int, char **)); … … 17 16 int verbose PROTO((int, char **)); 18 17 int version PROTO((int, char **)); 19 int server PROTO((int, char **));18 int server PROTO((int, char **)); 20 19 21 20 static Command cmds[] = { 22 {"controller", controller, "controller commands"}, 23 {"task", task, "define a schedulable task"}, 24 {"host", task_host, "define host machine for a task"}, 25 {"nmax", task_nmax, "define maximum number of jobs for a task"}, 26 {"trange", task_trange, "define valid/invalid time periods for a task"}, 27 {"task.exit", task_macros, "define exit macros for a task"}, 28 {"task.exec", task_macros, "define pre-exec macro for a task"}, 29 {"command", task_command, "define executed command for a task"}, 30 {"periods", task_periods, "define time scales for a task"}, 31 {"run", run, "run the scheduler"}, 32 {"stop", stop, "stop the scheduler"}, 33 {"pulse", pulse, "set the scheduler update period"}, 34 {"server", server, "server-specific commands"}, 21 {"controller", controller, "controller commands"}, 22 {"task", task, "define a schedulable task"}, 23 {"host", task_host, "define host machine for a task"}, 24 {"nmax", task_nmax, "define maximum number of jobs for a task"}, 25 {"trange", task_trange, "define valid/invalid time periods for a task"}, 26 {"task.exit", task_macros, "define exit macros for a task"}, 27 {"task.exec", task_macros, "define pre-exec macro for a task"}, 28 {"command", task_command, "define executed command for a task"}, 29 {"options", task_options, "define optional variables associated with the job task"}, 30 {"periods", task_periods, "define time scales for a task"}, 31 {"pulse", pulse, "set the scheduler update period"}, 32 {"server", server, "server-specific commands"}, 35 33 {"status", status_server, "get system status"}, 36 {"kill", kill_job, "kill job"},37 {"delete", delete_job, "delete job"},38 {"version", version, "show version information"},39 {"verbose", verbose, "set/toggle verbose mode"},34 {"kill", kill_job, "kill job"}, 35 {"delete", delete_job, "delete job"}, 36 {"version", version, "show version information"}, 37 {"verbose", verbose, "set/toggle verbose mode"}, 40 38 }; 41 39
Note:
See TracChangeset
for help on using the changeset viewer.
