diff options
Diffstat (limited to 'i386')
-rw-r--r-- | i386/configfrag.ac | 1 | ||||
-rw-r--r-- | i386/intel/pmap.c | 4 | ||||
-rw-r--r-- | i386/intel/pmap.h | 4 |
3 files changed, 4 insertions, 5 deletions
diff --git a/i386/configfrag.ac b/i386/configfrag.ac index 77f66af..1eaabca 100644 --- a/i386/configfrag.ac +++ b/i386/configfrag.ac @@ -23,7 +23,6 @@ dnl USE OF THIS SOFTWARE. # Some of the i386-specific code checks for these. AC_DEFINE([__ELF__], [1], [__ELF__]) - AC_DEFINE([i386], [1], [i386]) # Determines the size of the CPU cache line. AC_DEFINE([CPU_L1_SHIFT], [6], [CPU_L1_SHIFT]) diff --git a/i386/intel/pmap.c b/i386/intel/pmap.c index 7cb990a..3c11d31 100644 --- a/i386/intel/pmap.c +++ b/i386/intel/pmap.c @@ -2787,7 +2787,7 @@ void pmap_update_interrupt() } #endif /* NCPUS > 1 */ -#ifdef i386 +#if defined(__i386__) /* Unmap page 0 to trap NULL references. */ void pmap_unmap_page_zero () @@ -2806,4 +2806,4 @@ pmap_unmap_page_zero () INVALIDATE_TLB(kernel_pmap, 0, PAGE_SIZE); #endif /* MACH_XEN */ } -#endif /* i386 */ +#endif /* __i386__ */ diff --git a/i386/intel/pmap.h b/i386/intel/pmap.h index d2e3b29..2692aae 100644 --- a/i386/intel/pmap.h +++ b/i386/intel/pmap.h @@ -48,7 +48,7 @@ * Define the generic in terms of the specific */ -#if i386 +#if defined(__i386__) #define INTEL_PGBYTES I386_PGBYTES #define INTEL_PGSHIFT I386_PGSHIFT #define intel_btop(x) i386_btop(x) @@ -58,7 +58,7 @@ #define trunc_intel_to_vm(x) trunc_i386_to_vm(x) #define round_intel_to_vm(x) round_i386_to_vm(x) #define vm_to_intel(x) vm_to_i386(x) -#endif /* i386 */ +#endif /* __i386__ */ /* * i386/i486 Page Table Entry |