summaryrefslogtreecommitdiffstats
path: root/lib/libkse
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2002-04-15 23:11:38 +0000
committerobrien <obrien@FreeBSD.org>2002-04-15 23:11:38 +0000
commit2cae3ce3f198c36572a61b7c1cb6224eb9c66109 (patch)
tree780730c8eb5c74941142fedf64ffe5b69f3ff8c1 /lib/libkse
parent938168982f37da28213f3c6c9ae93c97ad4b9e59 (diff)
downloadFreeBSD-src-2cae3ce3f198c36572a61b7c1cb6224eb9c66109.zip
FreeBSD-src-2cae3ce3f198c36572a61b7c1cb6224eb9c66109.tar.gz
The GCC developers have made good on their threats against #pragma for 3.1.
Use __weak_reference in place of the #pragma. Submitted by: eischen
Diffstat (limited to 'lib/libkse')
-rw-r--r--lib/libkse/thread/thr_main_np.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libkse/thread/thr_main_np.c b/lib/libkse/thread/thr_main_np.c
index 6ae7d1e..54c2018 100644
--- a/lib/libkse/thread/thr_main_np.c
+++ b/lib/libkse/thread/thr_main_np.c
@@ -31,10 +31,11 @@
#include <pthread_np.h>
#include "pthread_private.h"
+__weak_reference(_pthread_main_np, pthread_main_np);
+
/*
* Provide the equivelant to Solaris thr_main() function
*/
-#pragma weak pthread_main_np=_pthread_main_np
int
_pthread_main_np()
{
OpenPOWER on IntegriCloud