免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 17105 | 回复: 11
打印 上一主题 下一主题

[Linux] linux下如何实现进程间互斥锁?高手来。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-03-20 17:10 |只看该作者 |倒序浏览
问题:
一个动态库,其中有两个函数都会创建一个文件,是同样的文件,并可对文件进行操作。
这个库可以供多个进程调用,此时是否可以通过某种机制,实现进程A上锁后,进程B就不可以操作文件,当A解锁后进程B才可以继续访问。

我通过sem_init()/sem_wait()/sem_post()可以实现在同一个进程内的多个线程之间的互斥。
但是进程之间就有点想不通了。

int sem_init (sem_t *sem, int pshared, unsigned int value);

man sem_init
sem_init() initialises the unnamed semaphore at the address pointed to by sem.  The value argument speci-
       fies the initial value for the semaphore.

       The pshared argument indicates whether this semaphore is to be shared between the threads of  a  process,
       or between processes.

       If  pshared has the value 0, then the semaphore is shared between the threads of a process, and should be
       located at some address that is visible to all threads (e.g., a global variable, or a variable  allocated
       dynamically on the heap).

       If pshared is non-zero, then the semaphore is shared between processes, and should be located in a region
       of shared memory (see shm_open(3), mmap(2), and shmget(2)).  (Since a child created by  fork(2)  inherits
       its  parent’s memory mappings, it can also access the semaphore.)  Any process that can access the shared
       memory region can operate on the semaphore using sem_post(3), sem_wait(3), etc.

       Initialising a semaphore that has already been initialised results in undefined behaviour.


其中第四段是重点,我试着去按照提示实现,但是google后,有的说这个暂时还没实现。

疑惑。。。。
求高手帮忙。

论坛徽章:
0
2 [报告]
发表于 2013-03-22 17:41 |只看该作者
#include <pthread.h>

       int pthread_mutexattr_getpshared(const pthread_mutexattr_t *
              restrict attr, int *restrict pshared);
       int pthread_mutexattr_setpshared(pthread_mutexattr_t *attr,
              int pshared);

DESCRIPTION
       The pthread_mutexattr_getpshared() function shall obtain the value of the process-shared attribute from the attributes  object  referenced  by  attr.  The
       pthread_mutexattr_setpshared() function shall set the process-shared attribute in an initialized attributes object referenced by attr.

       The  process-shared attribute is set to PTHREAD_PROCESS_SHARED to permit a mutex to be operated upon by any thread that has access to the memory where the
       mutex is allocated, even if the mutex is allocated in memory that is shared by multiple processes. If the process-shared attribute is PTHREAD_PROCESS_PRI-
       VATE,  the  mutex shall only be operated upon by threads created within the same process as the thread that initialized the mutex; if threads of differing
       processes attempt to operate on such a mutex, the behavior is undefined. The default value of the attribute shall be PTHREAD_PROCESS_PRIVATE.

论坛徽章:
95
程序设计版块每日发帖之星
日期:2015-09-05 06:20:00程序设计版块每日发帖之星
日期:2015-09-17 06:20:00程序设计版块每日发帖之星
日期:2015-09-18 06:20:002015亚冠之阿尔艾因
日期:2015-09-18 10:35:08月度论坛发贴之星
日期:2015-09-30 22:25:002015亚冠之阿尔沙巴布
日期:2015-10-03 08:57:39程序设计版块每日发帖之星
日期:2015-10-05 06:20:00每日论坛发贴之星
日期:2015-10-05 06:20:002015年亚冠纪念徽章
日期:2015-10-06 10:06:482015亚冠之塔什干棉农
日期:2015-10-19 19:43:35程序设计版块每日发帖之星
日期:2015-10-21 06:20:00每日论坛发贴之星
日期:2015-09-14 06:20:00
3 [报告]
发表于 2013-03-27 23:01 |只看该作者
回复 1# zc5524528


    试下文件锁。

论坛徽章:
0
4 [报告]
发表于 2013-03-31 00:29 |只看该作者
1) 得到共享内存shm_open,mmap/shmget,shmat
2) pthread_mutexattr_setpshared

论坛徽章:
0
5 [报告]
发表于 2013-08-20 11:16 |只看该作者
最开始用的就是文件锁,但操作文件太慢了,所以想换掉。已经OK了回复 3# MMMIX


   

论坛徽章:
7
天蝎座
日期:2013-09-28 10:45:42双子座
日期:2013-10-16 16:27:09射手座
日期:2013-10-23 10:21:32处女座
日期:2014-09-17 16:44:332015年亚洲杯之巴林
日期:2015-04-09 17:28:01冥斗士
日期:2015-11-26 16:19:0015-16赛季CBA联赛之山东
日期:2018-03-02 23:59:31
6 [报告]
发表于 2013-08-21 13:45 |只看该作者
unp卷一第二版中用的就是文件锁,锁的是/dev/zero。27.8章

论坛徽章:
0
7 [报告]
发表于 2015-08-04 15:05 |只看该作者
回复 2# heartless_cu

请问楼主最后是怎么实现的?我现在也要实现一个相似功能,但是做不到进程间的数据同步,因此想咨询一下你的方法。
多谢了


   

论坛徽章:
1
操作系统版块每日发帖之星
日期:2015-08-07 06:20:00
8 [报告]
发表于 2015-08-04 15:13 |只看该作者
pthread_mutex_t

论坛徽章:
1
操作系统版块每日发帖之星
日期:2015-08-07 06:20:00
9 [报告]
发表于 2015-08-04 16:08 |只看该作者
看错鸟,是进程的,使用文件锁flock,或者fctrl

论坛徽章:
0
10 [报告]
发表于 2015-08-07 16:17 |只看该作者
使用有名信号量即可。
有名信号量:可以用于不同进程间或多线程间的互斥与同步
  创建打开有名信号量
  sem_t *sem_open(const char *name, int oflag);
  sem_t *sem_open(const char *name, int oflag, mode_t mode, unsigned int value);
  成功返回信号量指针;失败返回SEM_FAILED,设置errno
  name是文件路径名,但不能写成/tmp/a.sem这样的形式,因为在linux下,sem都是在/dev/shm目录下,可写成"/mysem"或"mysem",创建出来的文件都是"/dev/shm/sem.mysem",mode设置为0666,value设置为信号量的初始值.所需信号灯等已存在条件下指定
  O_CREAT|O_EXCL却是个错误。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP