进程通信之读写锁研究.doc

  1. 1、本文档共8页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
进程通信之读写锁 读写锁 读写锁的分配规则 1. 没有线程持有读写锁进行写,任意数量的线程可以持有该读写锁用于读 2. 只有没有线程持有给定的读写锁用于读或者写的时候,才能分配读写锁用于写。 如果修改数据频繁,那么可以考虑用读写锁替代互斥锁。 获取与释放 如果对应的读写锁已由某个写入者持有,那么阻塞pthread_rwlock_rdlock获取读出锁 如果对应的读写锁已由另一个写入者持有,那就阻塞pthread_rwlock_wrlock获取写入锁。 pthread_rwlock_unlock用于释放读出锁或者写入锁。 三者成功时返回0,出错时返回正的错误值 pthread_rwlock_tryrdlock(pthread _rwlock_t *rwptr)尝试获取读出锁,如果不能马上获得,返回EBUSY错误。 pthread_rwlock_trywrlock(pthread _rwlock_t *rwptr)尝试获取写入锁,如果不能马上获得,返回EBUSY错误。 初始化和摧毁 动态初始化 int pthread_rwlock_init(pthread_rwlock_t *rwptr, const pthread_rwlockattr_t *attr) 静态初始化 PTHREAD_RWLOCK_INITIALIZER 摧毁 int pthread_rwlock_destroy(pthread_rwlock_t *rwptr) 属性设置 int pthread_rwlockattr_init(pthread_rwlockattr_t * attr) int pthread_rwlockattr_destroy(pthread_rwlockattr_t *attr) int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t * attr,int *valptr) int pthread_rwlockattr_setpshared(pthread_rwlockattr_t * attr,int val) 读写锁很适合读的次数远大于写的次数的情况。 例子: 一个写者,多个读者。用读写锁进行协调工作。 code: #include pthread.h #include stdio.h #include stdlib.h #include string.h struct data{ int number; char info[105]; }; struct data *pdata = NULL; pthread_rwlock_t lock; void *read(void *arg){ int id = *((int *)arg); while(1){ int ret; ret = pthread_rwlock_tryrdlock(lock); if(ret != 0) continue; printf(reader %d is reading!\n,id); if(pdata == NULL) printf(data is null.\n); else printf(data: number is %d, info are %s.\n,pdata-number,pdata-info); pthread_rwlock_unlock(lock); } pthread_exit(0); } void *write(void *arg){ int id = *((int *)arg); while(1){ int ret; ret = pthread_rwlock_trywrlock(lock); if(ret !=0) continue; printf(writer %d is writing!\n,id); if(pdata == NULL){ pdata = (struct data *)malloc(sizeof(struct data)); pdata-number = 1; strcpy(pdata-info,I love linux.); printf(finish, wrote it.\n); } else printf(the pd

文档评论(0)

***** + 关注
实名认证
内容提供者

我是自由职业者,从事文档的创作工作。

1亿VIP精品文档

相关文档