diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2007-08-04 15:56:13 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:27:11 +0200 |
commit | 5f31fc65e9479fe7c637c82e280e20bf4ef39250 (patch) | |
tree | 80dd5be1c8d3c71a0f1deb14e705c311df9d8af2 | |
parent | 20ce4a1d8fdda4449678a0bdf871551799a6f248 (diff) |
2007-08-04 Samuel Thibault <samuel.thibault@ens-lyon.org>
* i386/i386at/model_dep.c: Make init_alloc_aligned() extern.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | i386/i386at/model_dep.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -11,6 +11,7 @@ * i386/i386/mp_desc.c: Include <machine/vm_param.h> (interrupt_stack_alloc): Call init_alloc_aligned() instead of init_alloc(). + * i386/i386at/model_dep.c: Make init_alloc_aligned() extern. * i386/i386/mp_desc.h: Include <i386at/idt.h> instead of "idt.h" * i386/i386/cswitch.S: Use EXT(interrupt_stack) instead of _interrupt_stack. diff --git a/i386/i386at/model_dep.c b/i386/i386at/model_dep.c index da5c91c..d3d9ca6 100644 --- a/i386/i386at/model_dep.c +++ b/i386/i386at/model_dep.c @@ -452,7 +452,7 @@ unsigned int pmap_free_pages(void) } /* Always returns page-aligned regions. */ -static boolean_t +boolean_t init_alloc_aligned(vm_size_t size, vm_offset_t *addrp) { vm_offset_t addr; |