Kernel - Reworked x86 physical memory allocation
[tpg/acess2.git] / Kernel / time.c
index 9ddf26a..1180cad 100644 (file)
@@ -17,13 +17,12 @@ typedef struct sTimer {
 } tTimer;
 
 // === PROTOTYPES ===
-Sint64 now(void);
 void   Timer_CallTimers(void);
 
 // === GLOBALS ===
-Uint64 giTicks = 0;
-Sint64 giTimestamp = 0;
-Uint64 giPartMiliseconds = 0;
+volatile Uint64        giTicks = 0;
+volatile Sint64        giTimestamp = 0;
+volatile Uint64        giPartMiliseconds = 0;
 tTimer gTimers[NUM_TIMERS];    // TODO: Replace by a ring-list timer
 
 // === CODE ===
@@ -86,11 +85,12 @@ void Time_RemoveTimer(int ID)
 void Time_Delay(int Delay)
 {
        Sint64  dest = giTimestamp + Delay;
+       //Log("Time_Delay: dest = %lli", dest);
        while(dest > giTimestamp)       Threads_Yield();
+       //Log("Time_Delay: giTimestamp = %lli", giTimestamp);
 }
 
 // === EXPORTS ===
-EXPORT(now);
 EXPORT(Time_CreateTimer);
 EXPORT(Time_RemoveTimer);
 EXPORT(Time_Delay);

UCC git Repository :: git.ucc.asn.au