summaryrefslogtreecommitdiff
path: root/lib/libpthread/thread/thr_attr_setscope.c
diff options
context:
space:
mode:
authorDaniel Eischen <deischen@FreeBSD.org>2001-01-24 13:03:38 +0000
committerDaniel Eischen <deischen@FreeBSD.org>2001-01-24 13:03:38 +0000
commite5106342c6de9cbe26c4827e4e29bae309cd8cfb (patch)
tree5199387f09deaa21f12482317c165f815c4e8c2b /lib/libpthread/thread/thr_attr_setscope.c
parentf9447cd11209a5fb5ecef3f4cbe539e990f3b1bd (diff)
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_attr_setscope.c')
-rw-r--r--lib/libpthread/thread/thr_attr_setscope.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libpthread/thread/thr_attr_setscope.c b/lib/libpthread/thread/thr_attr_setscope.c
index de2fe8e4ac4d..81a09fa88b72 100644
--- a/lib/libpthread/thread/thr_attr_setscope.c
+++ b/lib/libpthread/thread/thr_attr_setscope.c
@@ -32,12 +32,13 @@
* $FreeBSD$
*/
#include <errno.h>
-#ifdef _THREAD_SAFE
#include <pthread.h>
#include "pthread_private.h"
+#pragma weak pthread_attr_setscope=_pthread_attr_setscope
+
int
-pthread_attr_setscope(pthread_attr_t *attr, int contentionscope)
+_pthread_attr_setscope(pthread_attr_t *attr, int contentionscope)
{
int ret = 0;
@@ -53,4 +54,3 @@ pthread_attr_setscope(pthread_attr_t *attr, int contentionscope)
return(ret);
}
-#endif