Add timer_msleep, timer_usleep, timer_nsleep().
authorBen Pfaff <blp@cs.stanford.edu>
Sun, 29 Aug 2004 19:13:08 +0000 (19:13 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 29 Aug 2004 19:13:08 +0000 (19:13 +0000)
src/devices/timer.c
src/devices/timer.h

index 4b8dd2a47865b8828b9a6f326d4a7f03d970e222..df387367e72b3b531dc094ad585b263729c31807 100644 (file)
@@ -7,7 +7,7 @@
 #error 8254 timer requires TIMER_FREQ >= 19
 #endif
 
-static volatile uint64_t ticks;
+static volatile int64_t ticks;
 
 static void
 irq20_timer (struct intr_frame *args UNUSED)
@@ -33,25 +33,40 @@ timer_init (void)
   intr_register (0x20, 0, IF_OFF, irq20_timer, "8254 Timer");
 }
 
-uint64_t
+int64_t
 timer_ticks (void) 
 {
   enum if_level old_level = intr_disable ();
-  uint64_t t = ticks;
+  int64_t t = ticks;
   intr_set_level (old_level);
   return t;
 }
 
-uint64_t
-timer_elapsed (uint64_t then) 
+int64_t
+timer_elapsed (int64_t then) 
 {
-  uint64_t now = timer_ticks ();
-  return now > then ? now - then : ((uint64_t) -1 - then) + now + 1;
+  return timer_ticks () - then;
 }
 
-/* Suspends execution for at least DURATION ticks. */
+/* Suspends execution for approximately DURATION milliseconds. */
 void
-timer_wait_until (uint64_t duration
+timer_msleep (int64_t ms
 {
-  /* FIXME */
+  int64_t ticks = (int64_t) ms * TIMER_FREQ / 1000;
+  int64_t start = timer_ticks ();
+
+  while (timer_elapsed (start) < ticks) 
+    continue;
+}
+
+void
+timer_usleep (int64_t us) 
+{
+  timer_msleep (us / 1000 + 1);
+}
+
+void
+timer_nsleep (int64_t ns) 
+{
+  timer_msleep (ns / 1000000 + 1);
 }
index 4be2f48dc8cb006be6a691dd1bb4a92996d2b005..33fdaec3ce90e45ff6d83a90831201ddfa170dcf 100644 (file)
@@ -6,9 +6,11 @@
 #define TIMER_FREQ 100
 
 void timer_init (void);
-uint64_t timer_ticks (void);
-uint64_t timer_elapsed (uint64_t);
+int64_t timer_ticks (void);
+int64_t timer_elapsed (int64_t);
 
-void timer_wait_until (uint64_t);
+void timer_msleep (int64_t ms);
+void timer_usleep (int64_t us);
+void timer_nsleep (int64_t ns);
 
 #endif /* timer.h */