* Don't need gc.hh.

This commit is contained in:
Eelco Dolstra 2007-11-15 15:07:27 +00:00
parent bfec245efa
commit 149e273023
2 changed files with 2 additions and 7 deletions

View file

@ -4,7 +4,6 @@
#include "local-store.hh" #include "local-store.hh"
#include "db.hh" #include "db.hh"
#include "util.hh" #include "util.hh"
#include "gc.hh"
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
@ -27,6 +26,8 @@ static string gcLockName = "gc.lock";
static string tempRootsDir = "temproots"; static string tempRootsDir = "temproots";
static string gcRootsDir = "gcroots"; static string gcRootsDir = "gcroots";
const unsigned int defaultGcLevel = 1000;
/* Acquire the global GC lock. This is used to prevent new Nix /* Acquire the global GC lock. This is used to prevent new Nix
processes from starting after the temporary root files have been processes from starting after the temporary root files have been

View file

@ -1,6 +0,0 @@
#ifndef __GC_H_INCLUDED
#define __GC_H_INCLUDED
const unsigned int defaultGcLevel = 1000;
#endif //__GC_H_INCLUDED