freebsd-ports/net/libunp/files/patch-am
Dan Moschuk a759fd52db libunp is the library used in W. Richard Steven's book "UNIX Network
Programming Volume 1, 2nd Edition".  It contains the library and headers
used in the examples as well as all programs from the text that compile on
FreeBSD systems.

PR: ports/14057
Submitted by: James FitzGibbon <james@targetnet.com>
1999-10-02 19:13:06 +00:00

21 lines
360 B
Plaintext

--- lib/wrappthread.c.orig Thu Sep 30 11:06:22 1999
+++ lib/wrappthread.c Thu Sep 30 11:06:34 1999
@@ -40,17 +40,6 @@
}
void
-Pthread_kill(pthread_t tid, int signo)
-{
- int n;
-
- if ( (n = pthread_kill(tid, signo)) == 0)
- return;
- errno = n;
- err_sys("pthread_kill error");
-}
-
-void
Pthread_mutexattr_init(pthread_mutexattr_t *attr)
{
int n;