C语言能实现多线程么

Python015

C语言能实现多线程么,第1张

可以通过调用C语言函数库pthread里的函数,创建多线程

多线程是指程序中包含多个执行流,即在一个程序中可以同时运行多个不同的线程来执行不同的任务,也就是说允许单个程序创建多个并行执行的线程来完成各自的任务。

C语言最初并未设计多线程的机制,随着软硬件的发展及需求的发展,C语言才开发了线程库以支持多线程的操作和应用。

1、添加线程相关的头文件:#include<pthread.h>

2、线程创建函数是pthread_create()函数,该函数的原型为:

int pthread_create(pthread_t *thread,pthread_attr_t *attr,void* (*start_routine)(void*),void *arg)

3、线程退出函数是pthread_exit()函数,该函数的原型为:

void pthread_exit(void *retval)

创建线程的示例程序如下:

/*

**程序说明:创建线程函数pthread_create()函数的使用。

*/

#include <stdio.h>

#include <pthread.h>

#include <unistd.h>

#include <stdlib.h>

#include <string.h>

//打印标识符的函数

void print_ids(const char *str)

{

pid_t pid //进程标识符

pthread_t tid //线程标识符

pid=getpid() //获得进程号

tid=pthread_self() //获得线程号

printf("%s pid:%u tid:%u (0x%x)\n",

str,(unsigned int)pid,(unsigned int)tid,(unsigned int)tid) //打印进程号和线程号

}

//线程函数

void* pthread_func(void *arg)

{

print_ids("new thread:") //打印新建线程号

return ((void*)0)

}

//主函数

int main()

{

int err

pthread_t ntid //线程号

err=pthread_create(&ntid,NULL,pthread_func,NULL) //创建一个线程

if(err != 0)

{

printf("create thread failed:%s\n",strerror(err))

exit(-1)

}

print_ids("main thread:") //打印主线程号

sleep(2)

return 0

}

这是一个多线程例子,里面只有两个线程,是生产者/消费者模式,已编译通过,注释很详细,\x0d\x0a如下:\x0d\x0a\x0d\x0a/* 以生产者和消费者模型问题来阐述Linux线程的控制和通信你 \x0d\x0a生产者线程将生产的产品送入缓冲区,消费者线程则从中取出产品。\x0d\x0a缓冲区有N个,是一个环形的缓冲池。\x0d\x0a*/\x0d\x0a#include \x0d\x0a#include \x0d\x0a\x0d\x0a#define BUFFER_SIZE 16\x0d\x0a\x0d\x0astruct prodcons\x0d\x0a{\x0d\x0aint buffer[BUFFER_SIZE]/*实际存放数据的数组*/\x0d\x0apthread_mutex_t lock/*互斥体lock,用于对缓冲区的互斥操作*/\x0d\x0aint readpos,writepos/*读写指针*/\x0d\x0apthread_cond_t notempty/*缓冲区非空的条件变量*/\x0d\x0apthread_cond_t notfull/*缓冲区未满 的条件变量*/\x0d\x0a}\x0d\x0a\x0d\x0a/*初始化缓冲区*/\x0d\x0avoid pthread_init( struct prodcons *p)\x0d\x0a{\x0d\x0apthread_mutex_init(&p->lock,NULL)\x0d\x0apthread_cond_init(&p->notempty,NULL)\x0d\x0apthread_cond_init(&p->notfull,NULL)\x0d\x0ap->readpos = 0\x0d\x0ap->writepos = 0\x0d\x0a}\x0d\x0a\x0d\x0a/*将产品放入缓冲区,这里是存入一个整数*/\x0d\x0avoid put(struct prodcons *p,int data)\x0d\x0a{\x0d\x0apthread_mutex_lock(&p->lock)\x0d\x0a/*等待缓冲区未满*/\x0d\x0aif((p->writepos +1)%BUFFER_SIZE ==p->readpos)\x0d\x0a{\x0d\x0apthread_cond_wait(&p->notfull,&p->lock)\x0d\x0a}\x0d\x0ap->buffer[p->writepos] =data\x0d\x0ap->writepos++\x0d\x0aif(p->writepos >= BUFFER_SIZE)\x0d\x0ap->writepos = 0\x0d\x0apthread_cond_signal(&p->notempty)\x0d\x0apthread_mutex_unlock(&p->lock)\x0d\x0a}\x0d\x0a/*从缓冲区取出整数*/\x0d\x0aint get(struct prodcons *p)\x0d\x0a{\x0d\x0aint data\x0d\x0apthread_mutex_lock(&p->lock)\x0d\x0a/*等待缓冲区非空*/\x0d\x0aif(p->writepos == p->readpos)\x0d\x0a{\x0d\x0apthread_cond_wait(&p->notempty ,&p->lock)//非空就设置条件变量notempty\x0d\x0a}\x0d\x0a/*读书据,移动读指针*/\x0d\x0adata = p->buffer[p->readpos]\x0d\x0ap->readpos++\x0d\x0aif(p->readpos == BUFFER_SIZE)\x0d\x0ap->readpos = 0\x0d\x0a/*设置缓冲区未满的条件变量*/\x0d\x0apthread_cond_signal(&p->notfull)\x0d\x0apthread_mutex_unlock(&p->lock)\x0d\x0areturn data\x0d\x0a}\x0d\x0a /*测试:生产站线程将1 到1000的整数送入缓冲区,消费者线程从缓冲区中获取整数,两者都打印信息*/\x0d\x0a#define OVER (-1)\x0d\x0astruct prodcons buffer\x0d\x0avoid *producer(void *data)\x0d\x0a{\x0d\x0aint n\x0d\x0afor( n=0n\n",n)\x0d\x0aput(&buffer,n)\x0d\x0a}\x0d\x0aput(&buffer,OVER)\x0d\x0areturn NULL\x0d\x0a}\x0d\x0avoid *consumer(void *data)\x0d\x0a{\x0d\x0aint d\x0d\x0awhile(1)\x0d\x0a{\x0d\x0ad = get(&buffer)\x0d\x0aif(d == OVER)\x0d\x0abreak\x0d\x0aelse\x0d\x0aprintf("----->%d\n",d)\x0d\x0a}\x0d\x0areturn NULL\x0d\x0a}\x0d\x0aint main()\x0d\x0a{\x0d\x0apthread_t th_p,th_c\x0d\x0avoid *retval\x0d\x0a pthread_init(&buffer)\x0d\x0apthread_create(&th_p,NULL,producer,0)\x0d\x0apthread_create(&th_c,NULL,consumer,0)\x0d\x0a/*等待两个线程结束*/\x0d\x0a pthread_join(th_p, &retval)\x0d\x0a pthread_join(th_c,&retval)\x0d\x0a return 0\x0d\x0a}