* generic-morestack-thread.c: Change declaration of
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 14 Jan 2013 19:33:02 +0000 (19:33 +0000)
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 14 Jan 2013 19:33:02 +0000 (19:33 +0000)
__real_pthread_create to not be weak.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@195172 138bc75d-0d04-0410-961f-82ee72b054a4

libgcc/ChangeLog
libgcc/generic-morestack-thread.c

index 8629b85..4ec2352 100644 (file)
@@ -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
index bbe6dd1..db912cf 100644 (file)
@@ -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,