diff options
author | imura <imura@FreeBSD.org> | 2000-02-12 19:19:00 +0000 |
---|---|---|
committer | imura <imura@FreeBSD.org> | 2000-02-12 19:19:00 +0000 |
commit | 37bd5e5bc3af4b430f4fe18d9ed8a79a0eb4f202 (patch) | |
tree | 80c105d92b346af8f1eba5aa428288102aa982e4 /devel/libcii/files | |
parent | 318bc214b1835902ce8aa368c827056c14d9b2dc (diff) | |
download | FreeBSD-ports-37bd5e5bc3af4b430f4fe18d9ed8a79a0eb4f202.zip FreeBSD-ports-37bd5e5bc3af4b430f4fe18d9ed8a79a0eb4f202.tar.gz |
Fix new compiler error in -current.
PR: 16441
Submitted by: Alexander Langer <alex@big.endian.de>
Diffstat (limited to 'devel/libcii/files')
-rw-r--r-- | devel/libcii/files/patch-aa | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/devel/libcii/files/patch-aa b/devel/libcii/files/patch-aa index 7f543f1..d8b798e 100644 --- a/devel/libcii/files/patch-aa +++ b/devel/libcii/files/patch-aa @@ -1,5 +1,14 @@ ---- src/thread.c.orig Thu Nov 6 06:03:00 1997 -+++ src/thread.c Tue Jun 8 21:37:09 1999 +--- src/thread.c.orig Wed Nov 5 22:03:00 1997 ++++ src/thread.c Sun Jan 30 18:09:03 2000 +@@ -118,7 +118,7 @@ + && scp->sc_pc <= (unsigned long)_ENDMONITOR) + return 0; + put(current, &ready); +- sigsetmask(scp->sc_mask); ++ sigprocmask(SIG_SETMASK, NULL, &(scp->sc_mask)); + run(); + return 0; + } @@ -243,13 +243,13 @@ critical--; } while (0); args = t->sp; |