diff options
author | Thomas Bushnell <thomas@gnu.org> | 1997-04-18 20:46:08 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1997-04-18 20:46:08 +0000 |
commit | 1a05492545289ee207e85abef3133dec88c7dd72 (patch) | |
tree | 494a2a78ed95341b49e9f998a9c81bbae7a86352 /serverboot/wiring.c | |
parent | da332961620de8ab12f3908d9eaf80570b6e9d81 (diff) | |
download | hurd-1a05492545289ee207e85abef3133dec88c7dd72.tar.gz hurd-1a05492545289ee207e85abef3133dec88c7dd72.tar.bz2 hurd-1a05492545289ee207e85abef3133dec88c7dd72.zip |
Fri Apr 18 16:44:49 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* wiring.c (__vm_allocate): New function.
Wed Apr 16 14:18:28 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* default_pager.c (debug): Turn off.
Mon Apr 14 12:50:20 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* default_pager.c: Remove debugging printfs.
Thu Apr 10 15:10:25 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* Makefile (installationdir): Set variable.
Diffstat (limited to 'serverboot/wiring.c')
-rw-r--r-- | serverboot/wiring.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/serverboot/wiring.c b/serverboot/wiring.c index 550c1bec..993fbacc 100644 --- a/serverboot/wiring.c +++ b/serverboot/wiring.c @@ -138,3 +138,15 @@ vm_allocate(task, address, size, anywhere) VM_PROT_DEFAULT); return KERN_SUCCESS; } + +/* Other versions of this function in libc... */ +kern_return_t +__vm_allocate (task, address, size, anywhere) + task_t task; + vm_address_t *address; + vm_size_t size; + boolean_t anywhere; +{ + return vm_allcoate (task, address, size, anywhere); +} + |