IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 1, 2012, 3:24:39 PM (14 years ago)
Author:
eugene
Message:

support for parallel dvo in mextract, avextract, avmerge, gstar, gcat; remove some if-def-ed out code already moved to libdvo; list -vectors and -buffers options (store names of vectors and buffers in lists); list -copy give error if missing source; catlist, hosts & remote functions to support parallel dvos; skyregion -save option; new skycoverage modes (-min-ubercal; -min-dmag-sys; -min-mcal; -max-mcal); gstar output formatting cleanups; add more average info to gstar output; functions for spectral similarity analysis; coords returns nans for projections off the sphere; fix cumulative function; add name:type option to opihi/read function (eg read a:float 2 b:time 3 c:int 4); line -frac option; vtype function to get vector types; threshold function; write -fits option; code for unfinished mtype function (matching vtype)

File:
1 edited

Legend:

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

    r28241 r33662  
    1414  if (VarConfig ("SHELL", "%s", shell)     == NULL) strcpy (shell, "pclient");
    1515
    16   if (VerboseMode()) gprint (GP_ERR, "starting host within thread\n");
     16  if (VerboseMode()) gprint (GP_ERR, "starting remote connection to %s...", host[0].hostname);
    1717
    18   pid = rconnect (command, host[0].hostname, shell, stdio);
     18  int errorInfo;
     19  pid = rconnect (command, host[0].hostname, shell, stdio, &errorInfo, TRUE);
    1920  if (!pid) {     
    2021    /** failure to start: extend retry period **/
    21     if (VerboseMode()) gprint (GP_ERR, "failure to start %s\n", host[0].hostname);
     22    if (VerboseMode()) gprint (GP_ERR, "failure to start %s (error %d)\n", host[0].hostname, errorInfo);
    2223    gettimeofday (&now, (void *) NULL);
    2324    if (ZTIME(host[0].next_start_try) || ZTIME(host[0].last_start_try)) {
Note: See TracChangeset for help on using the changeset viewer.