(empth_start, empth_init) [_EMPTH_POSIX]: Do not handle SIGALRM. We

don't raise it, and the signal handler is fishy.
(empth_alarm): Unused, remove.
This commit is contained in:
Markus Armbruster 2005-10-26 16:30:00 +00:00
parent cae225a94a
commit e6145fa515
4 changed files with 0 additions and 45 deletions

View file

@ -569,20 +569,6 @@ empth_select(int fd, int flags)
loc_RunThisThread();
}
/************************
* empth_alarm
*/
void
empth_alarm(int sig)
{
empth_t *pThread = TlsGetValue(dwTLSIndex);
loc_debug("got alarm signal %d", sig);
/* Let it run if it is blocked like... */
SetEvent(pThread->hThreadEvent);
}
/************************
* empth_wakeup
*