From c35718053005603bf63aeb6492a95d9f6abfffab Mon Sep 17 00:00:00 2001 From: crs Date: Sun, 9 Jun 2002 17:35:28 +0000 Subject: [PATCH] added FIXME comment. --- mt/CThreadRep.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mt/CThreadRep.cpp b/mt/CThreadRep.cpp index 6e54080f..aa641b50 100644 --- a/mt/CThreadRep.cpp +++ b/mt/CThreadRep.cpp @@ -179,6 +179,9 @@ void CThreadRep::initThreads() pthread_sigmask(SIG_BLOCK, &sigset, NULL); // fire up the INT and TERM signal handler thread + // FIXME -- i've seen this thread hanging around after the app + // asserted. should figure out how it stays alive and prevent + // it from happening. int status = pthread_create(&s_signalThread, NULL, &CThreadRep::threadSignalHandler, getCurrentThreadRep());