aboutsummaryrefslogtreecommitdiff
path: root/src/libmain/shared.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2010-11-16 12:49:47 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2010-11-16 12:49:47 +0000
commitfb9368b5a0b2457b28f19d4902bc0790123338a2 (patch)
tree8e0d68ccc2951c44cfd442b3dad261e190127013 /src/libmain/shared.cc
parent64fd29855a8ae49cacdaff424679821b4fd3bf57 (diff)
parent4aced7f8d0d5d2c1057b0f46a70a37a577f81fa5 (diff)
* Sync with the trunk.
Diffstat (limited to 'src/libmain/shared.cc')
-rw-r--r--src/libmain/shared.cc32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/libmain/shared.cc b/src/libmain/shared.cc
index f58def403..d7879f035 100644
--- a/src/libmain/shared.cc
+++ b/src/libmain/shared.cc
@@ -13,6 +13,10 @@
#include <sys/stat.h>
#include <unistd.h>
+#if HAVE_BOEHMGC
+#include <gc/gc.h>
+#endif
+
namespace nix {
@@ -316,6 +320,14 @@ static void setuidInit()
}
+/* Called when the Boehm GC runs out of memory. */
+static void * oomHandler(size_t requested)
+{
+ /* Convert this to a proper C++ exception. */
+ throw std::bad_alloc();
+}
+
+
}
@@ -337,6 +349,26 @@ int main(int argc, char * * argv)
std::ios::sync_with_stdio(false);
+#if HAVE_BOEHMGC
+ /* Initialise the Boehm garbage collector. This isn't necessary
+ on most platforms, but for portability we do it anyway. */
+ GC_INIT();
+
+ GC_oom_fn = oomHandler;
+
+ /* Set the initial heap size to something fairly big (384 MiB) so
+ that in most cases we don't need to garbage collect at all.
+ (Collection has a fairly significant overhead, some.) The heap
+ size can be overriden through libgc's GC_INITIAL_HEAP_SIZE
+ environment variable. We should probably also provide a
+ nix.conf setting for this. Note that GC_expand_hp() causes a
+ lot of virtual, but not physical (resident) memory to be
+ allocated. This might be a problem on systems that don't
+ overcommit. */
+ if (!getenv("GC_INITIAL_HEAP_SIZE"))
+ GC_expand_hp(384 * 1024 * 1024);
+#endif
+
try {
try {
initAndRun(argc, argv);