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/pantasks/TaskOps.c

    r11324 r11898  
    547547/*** task timer functions ***/
    548548
    549 double GetTaskTimer (struct timeval start) {
     549double GetTaskTimer (struct timeval start, int verbose) {
    550550
    551551  double dtime;
     
    555555  dtime = DTIME (now, start);
    556556 
     557  if (verbose) {
     558      fprintf (stderr, "tt: %d %6d  - %d %6d : %f\n",
     559               now.tv_sec, now.tv_usec,
     560               start.tv_sec, start.tv_usec, dtime);
     561  }
     562
    557563  return (dtime);
    558564}
Note: See TracChangeset for help on using the changeset viewer.