1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

Temporarily stop recovering resources in CrashRecoveryContext while I investigate further why this works on my machine and not on others.

llvm-svn: 128065
This commit is contained in:
Ted Kremenek 2011-03-22 02:06:32 +00:00
parent 371ad9a265
commit 33f7ecabd4

View File

@ -70,7 +70,7 @@ CrashRecoveryContext::~CrashRecoveryContext() {
CrashRecoveryContextCleanup *tmp = i;
i = tmp->next;
tmp->cleanupFired = true;
tmp->recoverResources();
//tmp->recoverResources();
delete tmp;
}
tlIsRecoveringFromCrash.erase();