diff options
author | NIIBE Yutaka <gniibe@fsij.org> | 2013-06-06 09:49:01 +0900 |
---|---|---|
committer | NIIBE Yutaka <gniibe@fsij.org> | 2013-06-06 09:49:01 +0900 |
commit | 5540f9b08a2b997aaa4bfbe3aa8bbaa571945eaa (patch) | |
tree | 3317f4222935965c0e11bb89d105ff1c796189b9 | |
parent | 4c151b5af366b82a8c532d3b864873e96ea23520 (diff) |
fix PREEMPTION_USEC
-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 { |