]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
DARWIN sync: increase the limit before we complain about large regions being
authorNicholas Nethercote <njn@valgrind.org>
Wed, 20 May 2009 03:44:09 +0000 (03:44 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Wed, 20 May 2009 03:44:09 +0000 (03:44 +0000)
changed.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10011

memcheck/mc_main.c

index a6e04eb80e56035a920130ed01e7e43c3c0e8827..8cf7a7bc6124df8d07b808f3c363814f6ddda86a 100644 (file)
@@ -1351,7 +1351,7 @@ static void set_address_range_perms ( Addr a, SizeT lenT, UWord vabits16,
    if (lenT == 0)
       return;
 
-   if (lenT > 100 * 1000 * 1000) {
+   if (lenT > 256 * 1024 * 1024) {
       if (VG_(clo_verbosity) > 0 && !VG_(clo_xml)) {
          Char* s = "unknown???";
          if (vabits16 == VA_BITS16_NOACCESS ) s = "noaccess";