Skip to content

Commit

Permalink
And disable SignalHandler::handleSignal
Browse files Browse the repository at this point in the history
  • Loading branch information
Beirdo committed Jun 20, 2012
1 parent f32d6cb commit d25f03e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/libs/libmythbase/signalhandling.cpp
Expand Up @@ -191,6 +191,7 @@ void SignalHandler::signalHandler(int signum)

void SignalHandler::handleSignal(void)
{
#ifndef _WIN32
m_notifier->setEnabled(false);

char a;
Expand All @@ -212,9 +213,7 @@ void SignalHandler::handleSignal(void)
break;
case SIGSEGV:
case SIGABRT:
#ifndef _WIN32
case SIGBUS:
#endif
case SIGFPE:
case SIGILL:
usleep(100000);
Expand All @@ -235,6 +234,7 @@ void SignalHandler::handleSignal(void)
}

m_notifier->setEnabled(true);
#endif
}

/*
Expand Down

0 comments on commit d25f03e

Please sign in to comment.