Commented out the sigwait() call for BSDI. BSD/OS 3.1 does not have

the sigwait() function.
This commit is contained in:
wtc%netscape.com 1999-02-01 23:24:58 +00:00
Родитель acfa8da3a5
Коммит 1eea8577fc
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -1120,7 +1120,8 @@ static void suspend_signal_handler(PRIntn sig)
pthread_cond_signal(&me->suspendResumeCV);
while (me->suspend & PT_THREAD_SUSPENDED)
{
#if !defined(FREEBSD) && !defined(NETBSD) && !defined(OPENBSD) /*XXX*/
#if !defined(FREEBSD) && !defined(NETBSD) && !defined(OPENBSD) \
&& !defined(BSDI) /*XXX*/
PRIntn rv;
sigwait(&sigwait_set, &rv);
#endif