Linux下多线程编程简介(三)
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-04-28
一个进程中的多个线程是共享同一段资源的,线程对资源的竞争引出了锁.其中mutex是一种简单的加锁方法,这个互斥锁只有两种状态,那就是上锁和解锁,可以把互斥锁看作是某种意义上的全局变量.在某一时刻,只能有一个线程取得这个互斥上的锁,拥有上锁状态的线程可以对共享资源进行操作,而其他线程在该线程未解锁之前,够会被挂起,直到上锁的线程解开锁.可以这么说,互斥锁共享资源按序的在各个线程上操作.
互斥锁的操作主要包括互斥锁初始化、上锁、判断上锁、解锁、摧毁互斥锁.其中互斥锁可以分为快速互斥锁、递归互斥锁这检错互斥锁.这三种锁的区别主要在于其他未占有互斥锁的线程在希望得到互斥锁时是否需要等待挂起.快速锁是指调用线程会阻塞直到线程锁得到解锁为止.递归锁能够成功地返回并且增加调用线程在互斥上的加锁次数,比如一个链表在进行插入的操作时,可以进行查找的操作.检错锁则为快速互斥锁的非阻塞版本,它会立即返回并返回一个错误的信息.
pthread_mutex_init
函数原型: int pthread_mutex_init (pthread_mutex_t* mutex,
const pthread_mutexattr_t* mutexattr);
上锁函数:
int pthread_mutex_lock(pthread_mutex_t* mutex);
int pthread_mutex_trylock (pthread_mutex_t* mutex);
#include <stdio.h> #include <pthread.h> #include <errno.h> #define return_if_fail(p) if(!p) { printf("[%s]:func error!", __func__); return; } typedef struct _PrivInfo { pthread_mutex_t mutex; int lock_var; time_t end_time; }PrivInfo; void info_init(PrivInfo *thiz); void *pthread_function1(void *paramthiz); void *pthread_function2(void *paramthiz); int main (int argc, char** argv) { pthread_t pt_1 = 0; pthread_t pt_2 = 0; int ret = 0; PrivInfo *thiz = NULL; thiz = (PrivInfo*)malloc(sizeof(PrivInfo)); if(NULL == thiz) { return -1; } info_init(thiz); ret = pthread_create(&pt_1, NULL, pthread_function1, (void*)thiz); if(0 != ret) { perror("pthread1 creation failed!"); } ret = pthread_create(&pt_2, NULL, pthread_function2, (void*)thiz); if(0 != ret) { perror("pthread2 creation failed!"); } pthread_join(pt_2, NULL); pthread_mutex_destroy(&thiz->mutex); free(thiz); thiz = NULL; return 0; } void info_init(PrivInfo *thiz) { return_if_fail(&thiz != NULL); thiz->lock_var = 0; thiz->end_time = time(NULL) 10; pthread_mutex_init(&thiz->mutex, NULL); return; } void *pthread_function1(void *paramthiz) { int ret = 0; int i = 0; PrivInfo *thiz = (PrivInfo *)paramthiz; while(time(NULL) < thiz->end_time) { ret = pthread_mutex_loc |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: RH033学习资料下载下一篇: shell脚本中实现大段代码的注释方法
关于Linux下多线程编程简介(三)的所有评论