diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | chopstx.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2013-06-06 Niibe Yutaka <gniibe@fsij.org> + + * chopstx.c (PREEMPTION_USEC): Fix. + 2013-06-05 Niibe Yutaka <gniibe@fsij.org> * chopstx.c (sched, preempt, svc, chx_timer_expired, chx_exit) @@ -89,7 +89,7 @@ chx_fatal (uint32_t err_code) struct chx_thread *running; /* For round robin scheduling. */ -#define PREEMPTION_USEC (1000*MHZ) /* 1ms */ +#define PREEMPTION_USEC 1000 /* 1ms */ /* Double linked list operations. */ struct chx_dll { |