Show
Ignore:
Timestamp:
08/21/08 00:21:25 (4 years ago)
Author:
mwhitworth
Message:

Fix useconds addition for virtualbox. Need to reconcile slower bochs with fast virtualbox timer at some point.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/trunk/arch/i386/kernel/time.c

    r677 r850  
    5959void TimeUpdate() 
    6060{ 
    61         currTime.useconds+=10000/HZ; 
     61        currTime.useconds+=1000000/HZ; 
    6262        if (currTime.useconds >= 1000000) 
    6363        {