IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 19, 2007, 3:18:27 PM (19 years ago)
Author:
eugene
Message:

removed usleep from job and task threads; increased controller timeout; added verbosity; fixed quit controller; added check points to pcontrol thread

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/opihi/pcontrol/CheckSystem.c

    r10693 r11898  
    8888
    8989    if ((RunLevel == PCONTROL_RUN_ALL) || (RunLevel == PCONTROL_RUN_REAP)) {
    90       Njobchecks  += CheckBusyJobs(0.020);  /* get job status */
    91       Njobchecks  += CheckDoneJobs(0.020);  /* harvest job stdout/stderr */
    92       Njobchecks  += CheckKillJobs(0.020);  /* harvest job stdout/stderr */
     90      Njobchecks  += CheckBusyJobs(0.020);  /* get job status (PCLIENT) */
     91      TestCheckPoint ();
     92      Njobchecks  += CheckDoneJobs(0.020);  /* harvest job stdout/stderr (!PCLIENT) */
     93      TestCheckPoint ();
     94      Njobchecks  += CheckKillJobs(0.020);  /* harvest job stdout/stderr (PCLIENT) */
    9395      TestCheckPoint ();
    9496    }
     
    9698    if (RunLevel != PCONTROL_RUN_NONE) {
    9799      Nhostchecks += CheckDoneHosts(0.020); /* reset the host */
     100      TestCheckPoint ();
    98101      Nhostchecks += CheckDownHosts(0.100); /* launch the host */
    99102      TestCheckPoint ();
     
    102105    if (RunLevel == PCONTROL_RUN_ALL) {
    103106      // we want to give each block a maximum allowed time
    104       Nhostchecks += CheckIdleHosts(0.020); /* submit a new job */
     107      Nhostchecks += CheckIdleHosts(0.020); /* submit a new job (PCLIENT) */
    105108      TestCheckPoint ();
    106109    }
Note: See TracChangeset for help on using the changeset viewer.