pthread_create(thread,NULL,f,NULL); for(;;) { /* somecode */ };
pthread_join (*thread, &status); return 0; } НО компилятор ругается: /root/tmp/ccGB7r44.o: In function `main': /root/tmp/ccGB7r44.o(.text+0x33): undefined reference to `pthread_create' collect2: ld returned 1 exit status Не любит он меня...
