Home | History | Annotate | Download | only in clocks

Lines Matching defs:DELTA

13  * The two processes will attempt to set the clock to TESTTIME+DELTA
14 * and TESTTIME-DELTA.
27 #define DELTA 5
34 int pid, delta;
45 tschild.tv_sec = TESTTIME + DELTA;
59 tsparent.tv_sec = TESTTIME - DELTA;
68 * Ensure we set clock to TESTTIME-DELTA or TESTTIME+DELTA.
77 delta = (tpget.tv_sec - LONGTIME) - TESTTIME;
79 if ((delta <= ACCEPTABLEDELTA - DELTA) ||
80 (delta <= ACCEPTABLEDELTA + DELTA)) {