* Disable the concurrent garbage collector on Cygwin for now.

This commit is contained in:
Eelco Dolstra 2006-05-29 20:46:51 +00:00
parent d764409d97
commit 58b4198ed8
1 changed files with 8 additions and 0 deletions

View File

@ -108,6 +108,10 @@ static AutoCloseFD fdTempRoots;
void addTempRoot(const Path & path)
{
#ifdef __CYGWIN__
return;
#endif
/* Create the temporary roots file for this process. */
if (fdTempRoots == -1) {
@ -172,6 +176,10 @@ typedef list<FDPtr> FDs;
static void readTempRoots(PathSet & tempRoots, FDs & fds)
{
#ifdef __CYGWIN__
return;
#endif
/* Read the `temproots' directory for per-process temporary root
files. */
Strings tempRootFiles = readDirectory(