IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 6, 2010, 5:03:18 PM (16 years ago)
Author:
eugene
Message:

rename elements of Job structure stdout and stderr (see #1228)

File:
1 edited

Legend:

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

    r21379 r28242  
    3838    gprint (GP_LOG, "STATUS %s\n", GetJobStackName(job[0].stack));
    3939    gprint (GP_LOG, "EXITST %d\n", job[0].exit_status);
    40     gprint (GP_LOG, "STDOUT %d\n", job[0].stdout.size);
    41     gprint (GP_LOG, "STDERR %d\n", job[0].stderr.size);
     40    gprint (GP_LOG, "STDOUT %d\n", job[0].stdout_buf.size);
     41    gprint (GP_LOG, "STDERR %d\n", job[0].stderr_buf.size);
    4242    gprint (GP_LOG, "DTIME %lf\n", job[0].dtime);
    4343    if (job[0].realhost) {
     
    5050        set_str_variable ("JOB_STATUS", GetJobStackName(job[0].stack));
    5151        set_int_variable ("JOB_EXITST", job[0].exit_status);
    52         set_int_variable ("JOB_STDOUT_SIZE", job[0].stdout.size);
    53         set_int_variable ("JOB_STDERR_SIZE", job[0].stderr.size);
     52        set_int_variable ("JOB_STDOUT_SIZE", job[0].stdout_buf.size);
     53        set_int_variable ("JOB_STDERR_SIZE", job[0].stderr_buf.size);
    5454        set_variable ("JOB_DTIME", job[0].dtime);
    5555        set_str_variable ("JOB_HOSTNAME", job[0].hostname);
Note: See TracChangeset for help on using the changeset viewer.