# HG changeset patch # User Jim Blandy # Date 737513637 0 # Node ID 37954061f9332383cd559bd306af4f574fad3589 # Parent 74380115ed5eec01e1c2bbda0513cfd1d54a7004 * timer.c (notify): Don't call sighold or sigrelse; they're USG only. We should really fix this later, but let's just make it compile for now. diff -r 74380115ed5e -r 37954061f933 lib-src/=timer.c --- a/lib-src/=timer.c Sun May 16 00:44:32 1993 +0000 +++ b/lib-src/=timer.c Sun May 16 00:53:57 1993 +0000 @@ -127,7 +127,7 @@ /* If an alarm timer runs out while this function is executing, it could get called recursively. This would be bad, because it's not re-entrant. So we must try to suspend the signal. */ -#ifdef sigmask +#if 0 /* This function isn't right for BSD. Fix it later. */ sighold(SIGIO); #endif @@ -162,7 +162,7 @@ if (num_events > 0) alarm (waitfor); -#ifdef sigmask +#if 0 /* This function isn't right for BSD. */ sigrelse(SIGIO); #endif }