码迷,mamicode.com
首页 > 编程语言 > 详细

c++实现互斥锁

时间:2019-07-30 00:38:49      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:互斥   flag   ++   ret   lag   实现   type   ==   turn   

typedef struct __lock_t
{
int flag;
} lock_t;

int TestAndSet(int *ptr, int new)
{
int old = *ptr;
*ptr = new;
return old;
}

void init(lock_t *mutex)
{
// 0: lock is available
// 1: lock is held
mutex->flag = 0;
}

void lock(lock_t *mutex)
{
while (mutex->flag == 1)
{ // Test the flag.
; // Wait the lock
mutex->flag = 1; // Set the lock, i.e. start to hold lock
}
}

void unlock(lock_t * mutex)
{
mutex->flag = 0;
}

c++实现互斥锁

标签:互斥   flag   ++   ret   lag   实现   type   ==   turn   

原文地址:https://www.cnblogs.com/liugangBlog/p/11267166.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!