Changeset 39466
- Timestamp:
- Mar 15, 2016, 9:20:17 AM (10 years ago)
- Location:
- trunk/Ohana/src/relastro
- Files:
-
- 3 edited
-
include/relastro.h (modified) (1 diff)
-
src/args.c (modified) (3 diffs)
-
src/load_catalogs.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/relastro/include/relastro.h
r39457 r39466 288 288 int PARALLEL_MANUAL; 289 289 int PARALLEL_SERIAL; 290 int PARALLEL_MANUAL_NO_WAIT; 290 291 291 292 int PARALLEL_OUTPUT; -
trunk/Ohana/src/relastro/src/args.c
r39457 r39466 245 245 // this is a test mode : rather than launching the remote jobs and waiting for completion, 246 246 // relastro will simply list the remote command and wait for the user to signal completion 247 PARALLEL_MANUAL_NO_WAIT = FALSE; 247 248 PARALLEL_MANUAL = FALSE; 248 249 if ((N = get_argument (argc, argv, "-parallel-manual"))) { … … 250 251 PARALLEL_MANUAL = TRUE; 251 252 remove_argument (N, &argc, argv); 253 if ((N = get_argument (argc, argv, "-parallel-manual-nowait"))) { 254 PARALLEL_MANUAL_NO_WAIT = TRUE; 255 remove_argument (N, &argc, argv); 256 } 252 257 } 253 258 // this is a test mode : rather than launching the relastro_client jobs remotely, they are … … 620 625 PARALLEL = FALSE; 621 626 PARALLEL_MANUAL = FALSE; 627 PARALLEL_MANUAL_NO_WAIT = FALSE; 622 628 PARALLEL_SERIAL = FALSE; 623 629 -
trunk/Ohana/src/relastro/src/load_catalogs.c
r39457 r39466 253 253 } 254 254 255 if (PARALLEL_MANUAL ) {255 if (PARALLEL_MANUAL && !PARALLEL_MANUAL_NO_WAIT) { 256 256 fprintf (stderr, "run the relastro_client commands above. when these are done, hit return\n"); 257 257 getchar();
Note:
See TracChangeset
for help on using the changeset viewer.
