Saya baru saja menginstal XUbuntu 11.10 64bit, tetapi saya mengalami masalah saat mengkompilasi contoh pthread yang paling sederhana.
Ini kodenya pthread_simple.c
:
#include <stdio.h>
#include <pthread.h>
main() {
pthread_t f2_thread, f1_thread;
void *f2(), *f1();
int i1,i2;
i1 = 1;
i2 = 2;
pthread_create(&f1_thread,NULL,f1,&i1);
pthread_create(&f2_thread,NULL,f2,&i2);
pthread_join(f1_thread,NULL);
pthread_join(f2_thread,NULL);
}
void *f1(int *x){
int i;
i = *x;
sleep(1);
printf("f1: %d",i);
pthread_exit(0);
}
void *f2(int *x){
int i;
i = *x;
sleep(1);
printf("f2: %d",i);
pthread_exit(0);
}
Dan di sini adalah perintah kompilasi
gcc -lpthread pthread_simple.c
Hasil:
lptang @ tlp-linux: ~ / test / test-pthread $ gcc -lpthread pthread_simple.c /tmp/ccmV0LdM.o: Dalam fungsi `main ': pthread_simple.c :(. teks + 0x2c): referensi tidak terdefinisi ke `pthread_create ' pthread_simple.c :(. teks + 0x46): referensi tidak terdefinisi ke `pthread_create ' pthread_simple.c :(. teks + 0x57): referensi tidak terdefinisi ke `pthread_join ' pthread_simple.c :(. text + 0x68): referensi tidak terdefinisi ke `pthread_join ' collect2: ld mengembalikan 1 status keluar
Adakah yang tahu apa yang menyebabkan masalah?
Ya, saya menggunakan lingkungan pra. Sekarang seharusnya ditampilkan dengan benar.
—
chtlp
BTW, silakan kompilasi dengan
—
Mat
-Wall
, Anda kehilangan header. (Dan sr_ sudah benar.)
#include <pthread.h>