diff options
author | Daniel Eischen <deischen@FreeBSD.org> | 2001-01-24 13:03:38 +0000 |
---|---|---|
committer | Daniel Eischen <deischen@FreeBSD.org> | 2001-01-24 13:03:38 +0000 |
commit | e5106342c6de9cbe26c4827e4e29bae309cd8cfb (patch) | |
tree | 5199387f09deaa21f12482317c165f815c4e8c2b /lib/libc_r/uthread/uthread_getsockopt.c | |
parent | f9447cd11209a5fb5ecef3f4cbe539e990f3b1bd (diff) |
Notes
Diffstat (limited to 'lib/libc_r/uthread/uthread_getsockopt.c')
-rw-r--r-- | lib/libc_r/uthread/uthread_getsockopt.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/libc_r/uthread/uthread_getsockopt.c b/lib/libc_r/uthread/uthread_getsockopt.c index 3222dbd9f508f..cc90ae194422f 100644 --- a/lib/libc_r/uthread/uthread_getsockopt.c +++ b/lib/libc_r/uthread/uthread_getsockopt.c @@ -33,10 +33,11 @@ */ #include <sys/types.h> #include <sys/socket.h> -#ifdef _THREAD_SAFE #include <pthread.h> #include "pthread_private.h" +#pragma weak getsockopt=_getsockopt + int _getsockopt(int fd, int level, int optname, void *optval, socklen_t *optlen) @@ -44,11 +45,8 @@ _getsockopt(int fd, int level, int optname, void *optval, socklen_t int ret; if ((ret = _FD_LOCK(fd, FD_RDWR, NULL)) == 0) { - ret = _thread_sys_getsockopt(fd, level, optname, optval, optlen); + ret = __sys_getsockopt(fd, level, optname, optval, optlen); _FD_UNLOCK(fd, FD_RDWR); } return ret; } - -__strong_reference(_getsockopt, getsockopt); -#endif |