1.0.45.8: fix os_vm_page_size on freebsd, openbsd and osf1
authorCyrus Harmon <ch-sbcl@bobobeach.com>
Thu, 20 Jan 2011 18:12:20 +0000 (18:12 +0000)
committerCyrus Harmon <ch-sbcl@bobobeach.com>
Thu, 20 Jan 2011 18:12:20 +0000 (18:12 +0000)
 * use BACKEND_PAGE_BYTES instead of getpagesize() to match change to
   backend-parms in 1.0.45.7

src/runtime/bsd-os.c
src/runtime/hpux-os.c
src/runtime/osf1-os.c
version.lisp-expr

index 1b1db92..f8682e2 100644 (file)
@@ -82,7 +82,7 @@ static void openbsd_init();
 void
 os_init(char *argv[], char *envp[])
 {
-    os_vm_page_size = getpagesize();
+    os_vm_page_size = BACKEND_PAGE_BYTES;
 
 #ifdef __NetBSD__
     netbsd_init();
index bff662f..7737762 100644 (file)
@@ -30,7 +30,7 @@ size_t os_vm_page_size;
 void
 os_init(char *argv[], char *envp[])
 {
-    os_vm_page_size = getpagesize();
+    os_vm_page_size = BACKEND_PAGE_BYTES;
 }
 
 os_vm_address_t
index 183a4a4..fc6a1f8 100644 (file)
@@ -54,7 +54,7 @@ size_t os_vm_page_size;
 void
 os_init(char *argv[], char *envp[])
 {
-    os_vm_page_size = getpagesize();
+    os_vm_page_size = BACKEND_PAGE_BYTES;
 }
 
 
index decabbb..49cb989 100644 (file)
@@ -20,4 +20,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.45.7"
+"1.0.45.8"