linux 互斥锁应用实例

发布时间:2021-06-08

/*这是一个使用互斥锁实现两个线程之间同步实例,一个线程负责从标准输入设备中读取数据,而另一个线程则负责将读入的数据输出到标准输出设备上*/

#include <stdio.h>

#include <unistd.h>

#include <stdlib.h>

#include <pthread.h>

#include <semaphore.h>

#include <string.h>

void *thread_function(void *arg);

pthread_mutex_t work_mutex; //全局互斥锁对象,首先应该定义一个这样的互斥锁

#define WORK_SIZE 1024 //全局共享数据去

char work_area[WORK_SIZE];

int time_to_exit = 0;

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

{

int res;

pthread_t a_thread;

void *thread_result;

res = pthread_mutex_init(&work_mutex, NULL); //init mutex 初始化互斥锁

if (res != 0)

{

perror("Mutex initialization failed");

exit(EXIT_FAILURE);

}

res = pthread_create(&a_thread, NULL, thread_function, NULL);//create new thread创建新线程

if (res != 0)

{

perror("Thread creation failed");

exit(EXIT_FAILURE);

}

pthread_mutex_lock(&work_mutex); //lock the mutex 互斥锁上锁

printf("Input some text. Enter 'end' to finish\n");

while(!time_to_exit) //标志

{

fgets(work_area, WORK_SIZE, stdin); //get a string from stdin读取一行信息 pthread_mutex_unlock(&work_mutex); //unlock the mutex解锁

while(1)

{

pthread_mutex_lock(&work_mutex); //lock the mutex

linux 互斥锁应用实例.doc 将本文的Word文档下载到电脑

精彩图片

热门精选

大家正在看

× 游客快捷下载通道(下载后可以自由复制和排版)

限时特价:7 元/份 原价:20元

支付方式:

开通VIP包月会员 特价:29元/月

注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信:fanwen365 QQ:370150219