This commit is contained in:
Glenn Maynard
2004-01-18 02:46:31 +00:00
parent da18d50b3b
commit 077e8c5f8a
+3 -3
View File
@@ -477,9 +477,9 @@ void RageMutexImpl::Lock()
} }
/* XXX: We want a stack trace of *all* threads if this happened, so we can /* XXX: We want a stack trace of *all* threads if this happened, so we can
* tell who we're deadlocked with. Crash in a thread, so we can see the * tell who we're deadlocked with. We can't use CHECKPOINT, since that uses
* function on the stack (so we know we didn't crash somewhere else above. * locks. Crash in a function, so we can see it on the stack (so we know
* (We can't use CHECKPOINT, since that uses locks.) */ * we didn't crash somewhere else above.) */
CrashDeadlocked(); CrashDeadlocked();
} }