Linux下的c语言简单的多线程编程,首先要区分好多线程和多进程。其中之一就是,多进程是linux内核本身所支持的,而多线程则需要相应的动态库进行支持。对于进程而言,数据之间都是相互隔离的,而多线程则不同,不同的线程除了堆栈空间之外所有的数据都是共享的。说了这么多,我们还是自己编写一个多线程。
程序看看结果究竟是怎么样的。
[cpp] view plaincopy
#include
#include
#include
#include
void func_1(void* args)
{
while(1){
sleep(1);
printf("this is func_1!\n");
}
}
void func_2(void* args)
{
while(1){
sleep(2);
printf("this is func_2!\n");
}
}
int main()
{
pthread_t pid1, pid2;
if(pthread_create(&pid1, NULL, func_1, NULL))
{
return -1;
}
if(pthread_create(&pid2, NULL, func_2, NULL))
{
return -1;
}
while(1){
sleep(3);
}
return 0;
}
更多参考:
http://www.cnblogs.com/larran/
阅读(1289) | 评论(0) | 转发(0) |