pthread_mutex_lock用法

这篇博客介绍了在多线程编程中,如何使用pthread_mutex_lock与条件变量进行同步。条件变量允许线程等待特定条件满足,配合互斥锁避免竞争。涉及的函数包括pthread_cond_init、pthread_mutex_lock/unlock、pthread_cond_wait/timedwait、pthread_cond_signal/broadcast。在使用时,这些函数必须协同工作,并且pthread_cond_wait在等待期间会释放互斥锁。
摘要由CSDN通过智能技术生成

条件变量   

  条件变量是利用线程间共享的全局变量进行同步的一种机制,主要包括两个动作:一个线程等待"条件变量的条件成立"而挂起;另一个线程使"条件成立"(给出条件成立信号)。为了防止竞争,条件变量的使用总是和一个互斥锁结合在一起。  

条件变量是利用线程间共享的全局变量进行同步的一种机制,主要包括两个动作:
1)一个线程等待"条件变量的条件成立"而挂起;
2)另一个线程使"条件成立"(给出条件成立信号)。
为了防止竞争,条件变量的使用总是和一个互斥锁结合在一起。

1.主要涉及到下面的函数:
int pthread_cond_init(pthread_cond_t *cond, pthread_condattr_t *cond_attr) ---动态创建条件变量

pthread_mutex_lock ---互斥锁上锁

pthread_mutex_unlock ----互斥锁解锁

pthread_cond_wait() / pthread_cond_timedwait -----等待条件变量,挂起线程,区别是后者,会有timeout时间,如 果到了timeout,线程自动解除阻塞,这个时间和 time()系统调用相同意义的。以1970年时间算起。

pthread_cond_signal ----激活等待列表中的线程,

pthread_cond_broadcast() -------激活所有等待线程列表中最先入队的线程

注意:1)上面这几个函数都是原子操作,可以为理解为一条指令,不会被其他程序打断

`pthread_mutex_trylock` 函数用于尝试对一个互斥锁进行加锁,如果该锁当前没有被其他线程占用,则加锁成功,返回0;否则,加锁失败,返回EBUSY。其函数原型如下: ```c #include <pthread.h> int pthread_mutex_trylock(pthread_mutex_t *mutex); ``` 其中,`mutex` 参数是指向互斥锁变量的指针。 使用 `pthread_mutex_trylock` 时需要注意以下几点: 1. 确保互斥锁已经被初始化,否则加锁行为是未定义的。 2. 如果一个线程已经拥有了该互斥锁,再次尝试对该锁进行加锁会导致死锁。 3. 在加锁成功后,必须在合适的时候调用 `pthread_mutex_unlock` 函数对该锁进行解锁,否则会导致其他线程永远无法对该锁进行加锁。 下面是一个简单的示例程序: ```c #include <stdio.h> #include <pthread.h> pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; void* thread_func(void* arg) { int ret = pthread_mutex_trylock(&mutex); if (ret == 0) { printf("Thread %ld got the lock.\n", (long)arg); pthread_mutex_unlock(&mutex); } else { printf("Thread %ld failed to get the lock.\n", (long)arg); } return NULL; } int main() { pthread_t thread1, thread2; pthread_create(&thread1, NULL, thread_func, (void*)1); pthread_create(&thread2, NULL, thread_func, (void*)2); pthread_join(thread1, NULL); pthread_join(thread2, NULL); return 0; } ``` 该程序创建了两个线程分别尝试对互斥锁进行加锁。其中,一个线程能够成功获取到锁,另一个线程则失败。运行结果类似如下: ``` Thread 1 got the lock. Thread 2 failed to get the lock. ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值