#include <stdio.h>
#include <pthread.h>
#include <stdlib.h>
#include <string.h>
void* thread_function(void *ignoredInThisExample)
{
char *a = malloc(20);
strcpy(a,"hello world");
}
int main()
{
pthread_t thread_id;
char *b;
pthread_create (&thread_id, NULL,&thread_function, NULL);
pthread_join(thread_id,(void**)&b); //here we are reciving one pointer
//value so to use that we need double pointer
printf("b is %s.\n",b);
return 0;
}
en utilisant -O0
y -O1
à compiler et à exécuter :
[root c++]#gcc -g -O0 -o pthread pthread.c -lpthread
[root c++]#
[root c++]#
[root c++]#./pthread
b is hello world.
[root c++]#
[root c++]#
[root c++]#gcc -g -O1 -o pthread pthread.c -lpthread
[root c++]#
[root c++]#./pthread
b is .
pourquoi cela se produit-il ? code source de pthread_join() et pthread_exit() Comme je ne suis pas familier avec le langage assembleur, quelqu'un peut-il m'aider à analyser la raison ? assemblage en ligne