]> granicus.if.org Git - gc/commitdiff
2006-05-23 Zoltan Varga <vargaz@gmail.com>
authorZoltan Varga <vargaz@gmail.com>
Tue, 23 May 2006 15:23:37 +0000 (15:23 +0000)
committerguest <ivmai@mail.ru>
Fri, 29 Jul 2011 11:28:02 +0000 (15:28 +0400)
* os_dep.c (GC_unix_get_mem): Add an assert to bail out early if the runtime is
run on a machine with smaller page size than HBLKSIZE.

svn path=/trunk/mono/; revision=61001

ChangeLog
os_dep.c

index 0bc1298f9f081dbbbd78e35feb7d58b98d78a886..96384b33f67897089d66fbf3b6f3284d57964d76 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-05-23  Zoltan Varga  <vargaz@gmail.com>
+
+       * os_dep.c (GC_unix_get_mem): Add an assert to bail out early if the runtime is
+       run on a machine with smaller page size than HBLKSIZE.
+
 2006-05-19  Martin Baulig  <martin@ximian.com>
 
        * include/gc.h: Don't include "libgc-mono-debugger.h".
index ef80a9d093ec2dfd0965a28965177628804ac8ba..e92a9ef636c4ec2dbdb32a3109696df383c6d5f2 100644 (file)
--- a/os_dep.c
+++ b/os_dep.c
@@ -1617,6 +1617,8 @@ word bytes;
 #   else
       GC_ASSERT(last_addr != 0);
 #   endif
+         if (((word)result % HBLKSIZE) != 0)
+                 ABORT ("GC_unix_get_mem: Memory returned by mmap is not aligned to HBLKSIZE.");
     return((ptr_t)result);
 }