Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 264 → Rev 265

/shark/trunk/oslib/kl/event1.c/event1.c
105,7 → 105,7
SUBTIMESPEC(&(firstevent->time), &now, &tmp);
}
tnext = TIMESPEC2USEC(&tmp);
tnext = (tnext * 1197) / 1000;
tnext = (signed long long)(tnext) * 1193182 / 1000000;
pit_setconstant(0, tnext);
}
}
186,7 → 186,7
}
/* SUBTIMESPEC(&(firstevent->time), &now, &ttmp); */
tnext = TIMESPEC2USEC(&ttmp);
tnext = (tnext * 1197) / 1000;
tnext = (signed long long)(tnext) * 1193182 / 1000000;
pit_setconstant(0, tnext);
 
activeEvent = 0;
235,7 → 235,7
}
/*SUBTIMESPEC(&now, &(firstevent->time), &tmp); */
tnext = TIMESPEC2USEC(&tmp);
tnext = (tnext * 1197) / 1000;
tnext = (signed long long)(tnext) * 1193182 / 1000000;
pit_setconstant(0, tnext);
}
}