diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-11 14:09:00 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-11-11 14:40:04 +0100 |
commit | 1e3112520097667203994a576f24dcd71e6fa6c0 (patch) | |
tree | ae433266b731d705eb55c8916b4b2383199a282b | |
parent | bd4c953244912ab8108f4f8c3367fcdcc6c64640 (diff) | |
download | gnumach-1e3112520097667203994a576f24dcd71e6fa6c0.tar.gz gnumach-1e3112520097667203994a576f24dcd71e6fa6c0.tar.bz2 gnumach-1e3112520097667203994a576f24dcd71e6fa6c0.zip |
ipc: remove register qualifiers
* ipc/ipc_thread.h: Remove register qualifiers.
-rw-r--r-- | ipc/ipc_thread.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ipc/ipc_thread.h b/ipc/ipc_thread.h index fbeea46a..008ab4a9 100644 --- a/ipc/ipc_thread.h +++ b/ipc/ipc_thread.h @@ -75,7 +75,7 @@ MACRO_END #define ipc_thread_rmqueue_first_macro(queue, thread) \ MACRO_BEGIN \ - register ipc_thread_t _next; \ + ipc_thread_t _next; \ \ assert((queue)->ithq_base == (thread)); \ \ @@ -84,7 +84,7 @@ MACRO_BEGIN \ assert((thread)->ith_prev == (thread)); \ (queue)->ithq_base = ITH_NULL; \ } else { \ - register ipc_thread_t _prev = (thread)->ith_prev; \ + ipc_thread_t _prev = (thread)->ith_prev; \ \ (queue)->ithq_base = _next; \ _next->ith_prev = _prev; \ @@ -95,14 +95,14 @@ MACRO_END #define ipc_thread_enqueue_macro(queue, thread) \ MACRO_BEGIN \ - register ipc_thread_t _first = (queue)->ithq_base; \ + ipc_thread_t _first = (queue)->ithq_base; \ \ if (_first == ITH_NULL) { \ (queue)->ithq_base = (thread); \ assert((thread)->ith_next == (thread)); \ assert((thread)->ith_prev == (thread)); \ } else { \ - register ipc_thread_t _last = _first->ith_prev; \ + ipc_thread_t _last = _first->ith_prev; \ \ (thread)->ith_next = _first; \ (thread)->ith_prev = _last; \ |