我是靠谱客的博主 甜美黑米,最近开发中收集的这篇文章主要介绍多线程编译linux,总算实现了linux多线程的编译,多线程编译错误,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include void task1(int *counter);

void task2(int *counter);

void cleanup(int counter1, int counter2);

int g1 = 0;

int g2 = 0;

int main(int argc, char *argv[])

{

pthread_t thrd1, thrd2;

int ret;

/* Create the first thread */

ret = pthread_create(&thrd1,NULL,(void*)task1, (void*)&g1);

if(ret)

{

perror("pthread_create:task1");

exit(EXIT_FAILURE);

}

/* Create the second thread */

ret = pthread_create(&thrd2, NULL, (void*)task2, (void*)&g2);

if(ret)

{

perror("pthread_create:task2");

exit(EXIT_FAILURE);

}

pthread_join(thrd2,NULL); //第一个线程执行后等待,并被刮起,知道第二个线程执行完毕后第一个线程再继续执行

pthread_join(thrd1,NULL);

cleanup(g1, g2);

exit(EXIT_SUCCESS);

}

void task1(int *counter)

{

while(*counter < 5)

{

printf("task1 count:%dn",*counter);

(*counter)++;

sleep(1);

}

}

void task2(int *counter)

{

while(*counter < 5)

{

printf("task2 count:%dn",*counter);

(*counter)++;

//sleep(1);

}

}

void cleanup(int counter1, int counter2)

{

printf("total iterations:%dn",counter1 + counter2);

}

本以为大功告成了呢,可是在编译的时候总是出现:

[hyj@localhost cfile]$ gcc -o thrdcreat thrdcreat.c

/tmp/ccorDWTW.o: In function `main':

thrdcreat.c:(.text+0x31): undefined reference to `pthread_create'

thrdcreat.c:(.text+0x76): undefined reference to `pthread_create'

thrdcreat.c:(.text+0xaa): undefined reference to `pthread_join'

thrdcreat.c:(.text+0xbd): undefined reference to `pthread_join'

collect2: ld 返回 1

没有定义pthread_create和pthread_join?不可能阿,我有头文件#include 的啊。

后来查了很多资料才发现线程的库在编译时要指定,不然就会出现这类错误。

解决这个问题的方法很简单,就是在编译的时候在gcc后面加上-lpthread即可。

[hyj@localhost cfile]$ gcc -o thrdcreat thrdcreat.c -lpthread

[hyj@localhost cfile]$ ./thrdcreat

task1 count:0

task2 count:0

task2 count:1

task2 count:2

task2 count:3

task2 count:4

task1 count:1

task1 count:2

task1 count:3

task1 count:4

total iterations:10

:0wpoi2

大功告成。

最后

以上就是甜美黑米为你收集整理的多线程编译linux,总算实现了linux多线程的编译,多线程编译错误的全部内容,希望文章能够帮你解决多线程编译linux,总算实现了linux多线程的编译,多线程编译错误所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(73)

评论列表共有 0 条评论

立即
投稿
返回
顶部