Changeset 39457 for trunk/Ohana/src/opihi/pcontrol
- Timestamp:
- Mar 11, 2016, 10:23:42 PM (10 years ago)
- Location:
- trunk/Ohana
- Files:
-
- 8 edited
-
. (modified) (1 prop)
-
src/opihi/pcontrol/CheckSystem.c (modified) (1 diff)
-
src/opihi/pcontrol/JobOps.c (modified) (2 diffs)
-
src/opihi/pcontrol/MachineOps.c (modified) (1 diff)
-
src/opihi/pcontrol/StackOps.c (modified) (1 diff)
-
src/opihi/pcontrol/machines.c (modified) (1 diff)
-
src/opihi/pcontrol/pcontrol.c.in (modified) (1 diff)
-
src/opihi/pcontrol/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/pcontrol/CheckSystem.c
r34088 r39457 61 61 62 62 void *CheckSystem_Threaded (void *data) { 63 OHANA_UNUSED_PARAM(data); 63 64 64 65 int Njobchecks, Nhostchecks, Ndonejobs; -
trunk/Ohana/src/opihi/pcontrol/JobOps.c
r36623 r39457 208 208 209 209 IDtype AddJob (char *hostname, JobMode mode, int timeout, int nicelevel, int argc, char **argv, int Nxhosts, char **xhosts) { 210 OHANA_UNUSED_PARAM(timeout); 210 211 211 212 int JobID; … … 215 216 216 217 job[0].JobID = NextJobID(); 217 if (job[0].JobID < 0) { 218 free (job); 219 return -1; 220 } 218 // XXX this test does not make sense 219 // if (job[0].JobID < 0) { 220 // free (job); 221 // return -1; 222 // } 221 223 222 224 job[0].argc = argc; -
trunk/Ohana/src/opihi/pcontrol/MachineOps.c
r29540 r39457 74 74 // delete a new machine (if not new, return TRUE) 75 75 int DelMachine (char *name) { 76 OHANA_UNUSED_PARAM(name); 76 77 77 78 return TRUE; -
trunk/Ohana/src/opihi/pcontrol/StackOps.c
r16458 r39457 16 16 17 17 if (!DEBUG) return; 18 fprintf (stderr, "%s: %p ", func, stack);19 fprintf (stderr, "objects: %p ", stack[0].object);18 fprintf (stderr, "%s: %p ", func, (void *) stack); 19 fprintf (stderr, "objects: %p ", (void *) stack[0].object); 20 20 fprintf (stderr, "Nobjects: %d, NOBJECTS: %d\n", stack[0].Nobject, stack[0].NOBJECT); 21 21 } -
trunk/Ohana/src/opihi/pcontrol/machines.c
r26411 r39457 2 2 3 3 int machines (int argc, char **argv) { 4 OHANA_UNUSED_PARAM(argc); 5 OHANA_UNUSED_PARAM(argv); 4 6 5 7 PrintMachines (); -
trunk/Ohana/src/opihi/pcontrol/pcontrol.c.in
r28158 r39457 11 11 /* program-dependent initialization */ 12 12 void program_init (int *argc, char **argv) { 13 OHANA_UNUSED_PARAM(argc); 14 OHANA_UNUSED_PARAM(argv); 13 15 14 16 # ifdef THREADED -
trunk/Ohana/src/opihi/pcontrol/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.
