On Mon, Jan 14, 2013 at 11:33 AM, Ian Lance Taylor wrote:
> The declaration of __real_pthread_create in generic-morestack-thread.c
> had attribute weak. Note that this code is linked with --wrap
> pthread_create, so the reference to __real_pthread_create is really to
> pthread_create. Using weak
On Mon, Jan 14, 2013 at 11:33 AM, Ian Lance Taylor wrote:
> The declaration of __real_pthread_create in generic-morestack-thread.c
> had attribute weak. Note that this code is linked with --wrap
> pthread_create, so the reference to __real_pthread_create is really to
> pthread_create. Using weak
The declaration of __real_pthread_create in generic-morestack-thread.c
had attribute weak. Note that this code is linked with --wrap
pthread_create, so the reference to __real_pthread_create is really to
pthread_create. Using weak was incorrect, because the reference really
is a strong one. Ther