diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-11 21:15:09 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-11-13 01:31:36 +0100 |
commit | df745857b3f58fc057919047efc522ccc4493035 (patch) | |
tree | 8756fb33a275d931329b448e6e7b452762aa1928 | |
parent | 7f2ebdf53252fd3b6544b4b6de1c4c4f5a279fd9 (diff) |
kern: remove register qualifiers
* kern/ipc_sched.c: Remove register qualifiers.
-rw-r--r-- | kern/ipc_sched.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kern/ipc_sched.c b/kern/ipc_sched.c index 615ad60..d5b9263 100644 --- a/kern/ipc_sched.c +++ b/kern/ipc_sched.c @@ -182,9 +182,9 @@ thread_will_wait_with_timeout( boolean_t thread_handoff( - register thread_t old, - register continuation_t continuation, - register thread_t new) + thread_t old, + continuation_t continuation, + thread_t new) { spl_t s; |