diff options
Diffstat (limited to 'i386/intel')
-rw-r--r-- | i386/intel/pmap.c | 2 | ||||
-rw-r--r-- | i386/intel/pmap.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/i386/intel/pmap.c b/i386/intel/pmap.c index de65ac8..1043daa 100644 --- a/i386/intel/pmap.c +++ b/i386/intel/pmap.c @@ -2312,7 +2312,7 @@ void process_pmap_updates(my_pmap) /* * Interrupt routine for TBIA requested from other processor. */ -void pmap_update_interrupt() +void pmap_update_interrupt(void) { register int my_cpu; register pmap_t my_pmap; diff --git a/i386/intel/pmap.h b/i386/intel/pmap.h index a6e4ab9..0255f5a 100644 --- a/i386/intel/pmap.h +++ b/i386/intel/pmap.h @@ -162,8 +162,8 @@ boolean_t cpu_update_needed[NCPUS]; * External declarations for PMAP_ACTIVATE. */ -void process_pmap_updates(); -void pmap_update_interrupt(); +void process_pmap_updates(pmap_t); +void pmap_update_interrupt(void); extern pmap_t kernel_pmap; #endif /* NCPUS > 1 */ |