Chinaunix首页 | 论坛 | 博客
  • 博客访问: 641520
  • 博文数量: 1008
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 5175
  • 用 户 组: 普通用户
  • 注册时间: 2012-07-31 09:44
文章分类
文章存档

2012年(1008)

我的朋友

分类:

2012-08-01 11:35:03

原文地址:线程同步(互斥量) 作者:luozhiyong131

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
pthread_mutex_t mutex;
int x;

void thread1(void)
{
    while(x>0)
    {
        pthread_mutex_lock(&mutex);
        printf("thread 1 is running x=%dn",x);
        x--;
        pthread_mutex_unlock(&mutex);
        sleep(1);
    }
    pthread_exit(NULL);
}

void thread2(void)
{
    while(x>0)
    {
        pthread_mutex_lock(&mutex);
        printf("thread 2 is running x=%dn",x);
        x--;
        pthread_mutex_unlock(&mutex);
        sleep(1);
    }
    pthread_exit(NULL);
}

int main()
{
    pthread_t id1,id2;
    int ret;
    ret = pthread_mutex_init(&mutex,NULL);
    if(ret!=0)
    {
        printf("pthread_mutex_init failedn");
        exit(1);
    }
    x=10;
    
    ret = pthread_create(&id1,NULL,(void *)&thread1,NULL);
    if(ret!=0)
    {
        printf("pthread_create 1 failedn");
        exit(1);
    }
    
    ret = pthread_create(&id2,NULL,(void *)&thread2,NULL);
    if(ret!=0)
    {
        printf("pthread_create 2 failedn");
        exit(1);
    }
    
    pthread_join(id1,NULL);
    pthread_join(id2,NULL);
    return 0;
}


阅读(158) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~