Changeset 39457 for trunk/Ohana/src/opihi/pantasks
- Timestamp:
- Mar 11, 2016, 10:23:42 PM (10 years ago)
- Location:
- trunk/Ohana
- Files:
-
- 17 edited
-
. (modified) (1 prop)
-
src/opihi/pantasks/ListenClients.c (modified) (1 diff)
-
src/opihi/pantasks/controller_machines.c (modified) (1 diff)
-
src/opihi/pantasks/controller_threads.c (modified) (1 diff)
-
src/opihi/pantasks/controller_version.c (modified) (1 diff)
-
src/opihi/pantasks/invalid.c (modified) (1 diff)
-
src/opihi/pantasks/jobs_and_tasks_thread.c (modified) (1 diff)
-
src/opihi/pantasks/pantasks.c.in (modified) (1 diff)
-
src/opihi/pantasks/pantasks_client.c.in (modified) (1 diff)
-
src/opihi/pantasks/pantasks_server.c.in (modified) (1 diff)
-
src/opihi/pantasks/run.c (modified) (1 diff)
-
src/opihi/pantasks/server_connect.c (modified) (1 diff)
-
src/opihi/pantasks/server_disconnect.c (modified) (1 diff)
-
src/opihi/pantasks/server_run.c (modified) (3 diffs)
-
src/opihi/pantasks/stop.c (modified) (2 diffs)
-
src/opihi/pantasks/thread_locks.c (modified) (2 diffs)
-
src/opihi/pantasks/version.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana
-
Property svn:mergeinfo
set to
/branches/eam_branches/ohana.20160226 merged eligible
-
Property svn:mergeinfo
set to
-
trunk/Ohana/src/opihi/pantasks/ListenClients.c
r27435 r39457 68 68 /* select for messages from the current clients; wait for 0.5s before updating client list */ 69 69 void *ListenClients (void *data) { 70 OHANA_UNUSED_PARAM(data); 70 71 71 72 int i, Ncurrent, Nmax, status, Nread; -
trunk/Ohana/src/opihi/pantasks/controller_machines.c
r26411 r39457 2 2 3 3 int controller_machines (int argc, char **argv) { 4 OHANA_UNUSED_PARAM(argv); 4 5 5 6 int status; -
trunk/Ohana/src/opihi/pantasks/controller_threads.c
r23530 r39457 13 13 14 14 void *CheckControllerThread (void *data) { 15 OHANA_UNUSED_PARAM(data); 15 16 16 17 char log_stdout[128], log_stderr[128]; -
trunk/Ohana/src/opihi/pantasks/controller_version.c
r26411 r39457 2 2 3 3 int controller_version (int argc, char **argv) { 4 OHANA_UNUSED_PARAM(argv); 4 5 5 6 int status; -
trunk/Ohana/src/opihi/pantasks/invalid.c
r7917 r39457 2 2 3 3 int invalid (int argc, char **argv) { 4 OHANA_UNUSED_PARAM(argc); 4 5 5 6 gprint (GP_ERR, "%s is not valid for the pantasks client\n", argv[0]); -
trunk/Ohana/src/opihi/pantasks/jobs_and_tasks_thread.c
r23530 r39457 24 24 25 25 void *CheckJobsAndTasksThread (void *data) { 26 OHANA_UNUSED_PARAM(data); 26 27 27 28 char log_stdout[128], log_stderr[128]; -
trunk/Ohana/src/opihi/pantasks/pantasks.c.in
r27996 r39457 9 9 /* program-dependent initialization */ 10 10 void program_init (int *argc, char **argv) { 11 OHANA_UNUSED_PARAM(argc); 12 OHANA_UNUSED_PARAM(argv); 11 13 12 14 pthread_t JobsAndTasksThread; -
trunk/Ohana/src/opihi/pantasks/pantasks_client.c.in
r16453 r39457 9 9 /* program-dependent initialization */ 10 10 void program_init (int *argc, char **argv) { 11 OHANA_UNUSED_PARAM(argc); 12 OHANA_UNUSED_PARAM(argv); 11 13 12 14 auto_break = TRUE; -
trunk/Ohana/src/opihi/pantasks/pantasks_server.c.in
r38986 r39457 149 149 /* these are needed to resolve symbols expected by libshell.so */ 150 150 void welcome () { } 151 void program_init (int *argc, char **argv) {} 151 void program_init (int *argc, char **argv) { 152 OHANA_UNUSED_PARAM(argc); 153 OHANA_UNUSED_PARAM(argv); 154 } 152 155 153 156 // I need to do things in a different order here to have config / freopen / gprint sequenced correctly -
trunk/Ohana/src/opihi/pantasks/run.c
r11084 r39457 9 9 10 10 int run (int argc, char **argv) { 11 OHANA_UNUSED_PARAM(argv); 11 12 12 13 if (argc != 1) { -
trunk/Ohana/src/opihi/pantasks/server_connect.c
r16903 r39457 2 2 3 3 int server_connect (int argc, char **argv) { 4 OHANA_UNUSED_PARAM(argv); 4 5 5 6 int server; -
trunk/Ohana/src/opihi/pantasks/server_disconnect.c
r16903 r39457 2 2 3 3 int server_disconnect (int argc, char **argv) { 4 OHANA_UNUSED_PARAM(argv); 4 5 5 6 int server; -
trunk/Ohana/src/opihi/pantasks/server_run.c
r23530 r39457 2 2 3 3 int server_run (int argc, char **argv) { 4 OHANA_UNUSED_PARAM(argv); 4 5 5 6 if (argc != 1) { … … 15 16 16 17 int server_stop (int argc, char **argv) { 18 OHANA_UNUSED_PARAM(argv); 17 19 18 20 if (argc != 1) { … … 26 28 27 29 int server_halt (int argc, char **argv) { 30 OHANA_UNUSED_PARAM(argv); 28 31 29 32 if (argc != 1) { -
trunk/Ohana/src/opihi/pantasks/stop.c
r11084 r39457 2 2 3 3 int stop (int argc, char **argv) { 4 OHANA_UNUSED_PARAM(argv); 4 5 5 6 if (argc != 1) { … … 16 17 17 18 int halt (int argc, char **argv) { 19 OHANA_UNUSED_PARAM(argv); 18 20 19 21 if (argc != 1) { -
trunk/Ohana/src/opihi/pantasks/thread_locks.c
r27435 r39457 29 29 30 30 void ControlLock (const char *func) { 31 OHANA_UNUSED_PARAM(func); 31 32 // fprintf (stderr, "control lock %s\n", func); 32 33 pthread_mutex_lock (&ControlMutex); … … 34 35 35 36 void ControlUnlock (const char *func) { 37 OHANA_UNUSED_PARAM(func); 36 38 // fprintf (stderr, "control unlock %s\n", func); 37 39 pthread_mutex_unlock (&ControlMutex); -
trunk/Ohana/src/opihi/pantasks/version.c
r8176 r39457 3 3 4 4 int version (int argc, char **argv) { 5 OHANA_UNUSED_PARAM(argc); 6 OHANA_UNUSED_PARAM(argv); 5 7 6 8 char *tmp;
Note:
See TracChangeset
for help on using the changeset viewer.
