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 | d095d0f79c74ae0fc1ee5f63021bab7a79e235d7 (patch) | |
tree | d00a40af331587c59a7bdc5a4273649217808b46 | |
parent | f176b7157c8f75b13ace3aecef1fab943bf9fcad (diff) |
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.
-rw-r--r-- | serverboot/ChangeLog | 16 | ||||
-rw-r--r-- | serverboot/Makefile | 1 | ||||
-rw-r--r-- | serverboot/default_pager.c | 2 | ||||
-rw-r--r-- | serverboot/wiring.c | 12 |
4 files changed, 30 insertions, 1 deletions
diff --git a/serverboot/ChangeLog b/serverboot/ChangeLog index ccfccbe2..4a1a3611 100644 --- a/serverboot/ChangeLog +++ b/serverboot/ChangeLog @@ -1,3 +1,19 @@ +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. + Wed Apr 9 13:57:44 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> * default_pager.c (default_pager_default_thread): New function. diff --git a/serverboot/Makefile b/serverboot/Makefile index 05a07d58..290671ea 100644 --- a/serverboot/Makefile +++ b/serverboot/Makefile @@ -30,6 +30,7 @@ LCLHDRS = assert.h disk_inode_ffs.h fs.h queue.h defs.h ext2_fs.h \ disk_inode.h file_io.h minix_super.h translate_root.h target = serverboot HURDLIBS = threads +installationdir := $(prefix)/boot vpath boot_script.c $(srcdir)/../boot diff --git a/serverboot/default_pager.c b/serverboot/default_pager.c index 9b38abb5..90cc4f6b 100644 --- a/serverboot/default_pager.c +++ b/serverboot/default_pager.c @@ -50,7 +50,7 @@ #include "file_io.h" -#define debug 1 +#define debug 0 extern void *kalloc(); 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); +} + |