sr=waterson
r=valeski

This bullet-proofs the code so the one thread does not exit twice.
This commit is contained in:
edburns%acm.org 2000-11-09 23:49:57 +00:00
Родитель dce5c20139
Коммит b1aacc0ff8
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -101,6 +101,12 @@ nsThread::Exit(void* arg)
{
nsThread* self = (nsThread*)arg;
self->mDead = PR_TRUE;
if (self->mDead) {
NS_ERROR("attempt to Exit() thread twice");
return;
}
PR_LOG(nsIThreadLog, PR_LOG_DEBUG,
("nsIThread %p exited\n", self));
NS_RELEASE(self);