diff options
author | Ian Lance Taylor <iant@google.com> | 2013-01-14 19:33:02 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2013-01-14 19:33:02 +0000 |
commit | 2bc153600f82b39dbce706456daab078171b1312 (patch) | |
tree | d95b37b9edf65ca8a86da052c44dc655b85de2f9 /libgcc | |
parent | aeb8b4e96cbe526eb810794568909659d73b16dd (diff) | |
download | gcc-2bc153600f82b39dbce706456daab078171b1312.zip gcc-2bc153600f82b39dbce706456daab078171b1312.tar.gz gcc-2bc153600f82b39dbce706456daab078171b1312.tar.bz2 |
generic-morestack-thread.c: Change declaration of __real_pthread_create to not be weak.
* generic-morestack-thread.c: Change declaration of
__real_pthread_create to not be weak.
From-SVN: r195172
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 7 | ||||
-rw-r--r-- | libgcc/generic-morestack-thread.c | 3 |
2 files changed, 7 insertions, 3 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 8629b85..4ec2352 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,8 @@ +2013-01-14 Ian Lance Taylor <iant@google.com> + + * generic-morestack-thread.c: Change declaration of + __real_pthread_create to not be weak. + 2013-01-14 Georg-Johann Lay <avr@gjlay.de> * config/avr/lib1funcs.S: Remove trailing blanks. @@ -18,7 +23,7 @@ * config.host (i[34567]86-*-openbsd* and x86_64-*-openbsd*): Add to lists of i[34567]86-*-* and x86_64-*-* soft-fp targets. - + 2013-01-04 Nick Clifton <nickc@redhat.com> * config/v850/lib1funcs.S: Only provide CALLT support functions if diff --git a/libgcc/generic-morestack-thread.c b/libgcc/generic-morestack-thread.c index bbe6dd1..db912cf 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, |