diff options
author | Justus Winter <justus@gnupg.org> | 2017-10-23 17:36:18 +0200 |
---|---|---|
committer | Justus Winter <justus@gnupg.org> | 2017-10-23 17:36:18 +0200 |
commit | 8088591b6e56257ea9bd0be68fd1e5f48be892b1 (patch) | |
tree | bf5c0690baf43de1c3e3d3f8385e891c3ea804ee /i386/intel/pmap.c | |
parent | 6c093a91e43873df7f16192fa0e5e4d73592fa64 (diff) | |
download | gnumach-8088591b6e56257ea9bd0be68fd1e5f48be892b1.tar.gz gnumach-8088591b6e56257ea9bd0be68fd1e5f48be892b1.tar.bz2 gnumach-8088591b6e56257ea9bd0be68fd1e5f48be892b1.zip |
Drop the register qualifier.
* i386/intel/pmap.c: Drop the register qualifier.
* ipc/ipc_kmsg.h: Likewise.
* kern/bootstrap.c: Likewise.
* kern/profile.c: Likewise.
* kern/thread.c: Likewise.
* vm/vm_object.c: Likewise.
Diffstat (limited to 'i386/intel/pmap.c')
-rw-r--r-- | i386/intel/pmap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/i386/intel/pmap.c b/i386/intel/pmap.c index 2a53fb67..ffbd2ae4 100644 --- a/i386/intel/pmap.c +++ b/i386/intel/pmap.c @@ -2384,7 +2384,7 @@ void pmap_collect(pmap_t p) */ #if 0 void pmap_activate(my_pmap, th, my_cpu) - register pmap_t my_pmap; + pmap_t my_pmap; thread_t th; int my_cpu; { @@ -2427,9 +2427,9 @@ pmap_t pmap_kernel() */ #if 0 pmap_zero_page(phys) - register vm_offset_t phys; + vm_offset_t phys; { - register int i; + int i; assert(phys != vm_page_fictitious_addr); i = PAGE_SIZE / INTEL_PGBYTES; |