diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-01-14 19:33:02 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-01-14 19:33:02 +0000 |
commit | 51918e06976cf87449cf297c280169e995f5a976 (patch) | |
tree | d95b37b9edf65ca8a86da052c44dc655b85de2f9 /libgcc/generic-morestack-thread.c | |
parent | 02edff68f9730ae70faa237c3ecce94047b07ece (diff) | |
download | gcc-51918e06976cf87449cf297c280169e995f5a976.tar.gz |
* generic-morestack-thread.c: Change declaration of
__real_pthread_create to not be weak.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@195172 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgcc/generic-morestack-thread.c')
-rw-r--r-- | libgcc/generic-morestack-thread.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libgcc/generic-morestack-thread.c b/libgcc/generic-morestack-thread.c index bbe6dd12b5a..db912cffc0a 100644 --- a/libgcc/generic-morestack-thread.c +++ b/libgcc/generic-morestack-thread.c @@ -136,8 +136,7 @@ int __wrap_pthread_create (pthread_t *, const pthread_attr_t *, __attribute__ ((visibility ("hidden"))); extern int __real_pthread_create (pthread_t *, const pthread_attr_t *, - void *(*start_routine) (void *), void *) - __attribute__ ((weak)); + void *(*start_routine) (void *), void *); int __wrap_pthread_create (pthread_t *tid, const pthread_attr_t *attr, |