]> git.donarmstrong.com Git - lilypond.git/commitdiff
don't exit in (check-memory) for only 100MB of VMDATA... We use MUCH more now.
authorReinhold Kainhofer <reinhold@kainhofer.com>
Sat, 3 Sep 2011 16:00:50 +0000 (18:00 +0200)
committerReinhold Kainhofer <reinhold@kainhofer.com>
Sat, 3 Sep 2011 16:00:50 +0000 (18:00 +0200)
scm/lily.scm

index 91b34e290aa2b5b1fc7c28dd22db0ba0b60a2c57..f7e53cb1793838947ea2072f9b8ae75c9dc5ffce 100644 (file)
@@ -702,7 +702,8 @@ LilyPond safe mode.  The syntax is the same as `define*-public'."
          (mem (string->number (match:substring (car interesting) 1))))
     (format #t "VMDATA: ~a\n" mem)
     (display (gc-stats))
-    (if (> mem 100000)
+    (newline)
+    (if (> mem 500000)
         (begin (dump-gc-protects)
                (raise 1)))))