Ignore:
Timestamp:
May 14, 2013, 5:57:32 PM (12 years ago)
Author:
David Azarewicz
Message:

Minor change to timer routines. This is version 1.27.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/os2ahci/libc.c

    r157 r159  
    793793
    794794  current = gis->msecs;
    795   if (pTimer->Start < pTimer->End) {
     795  if (pTimer->Start <= pTimer->End) {
    796796    if ((current >= pTimer->End) || (current < pTimer->Start)) return 1;
    797797  } else {
     
    809809  TIMER Timer;
    810810
     811  if (millies == 0) return;
    811812  timer_init(&Timer, millies);
    812813  while (!timer_check_and_block(&Timer));
Note: See TracChangeset for help on using the changeset viewer.