summaryrefslogtreecommitdiffstats
path: root/lib/libpthread/thread/thr_getprio.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libpthread/thread/thr_getprio.c')
-rw-r--r--lib/libpthread/thread/thr_getprio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libpthread/thread/thr_getprio.c b/lib/libpthread/thread/thr_getprio.c
index 2f94b86..35eeb5b 100644
--- a/lib/libpthread/thread/thr_getprio.c
+++ b/lib/libpthread/thread/thr_getprio.c
@@ -32,12 +32,13 @@
* $FreeBSD$
*/
#include <errno.h>
-#ifdef _THREAD_SAFE
#include <pthread.h>
#include "pthread_private.h"
+#pragma weak pthread_getprio=_pthread_getprio
+
int
-pthread_getprio(pthread_t pthread)
+_pthread_getprio(pthread_t pthread)
{
int policy, ret;
struct sched_param param;
@@ -53,4 +54,3 @@ pthread_getprio(pthread_t pthread)
/* Return the thread priority or an error status: */
return (ret);
}
-#endif
OpenPOWER on IntegriCloud