免费注册 查看新帖 |

Chinaunix

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

请教:Linux下带名字的线程锁,替代WaitForSingleObject [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-03-22 12:21 |只看该作者 |倒序浏览
做win32到linux程序下的移植,目前需要带名字的线程锁,以前用的Posix的信号量:sem_open,sem_post,sem_unlink等几个函数,发现WaitForSingleObject可以嵌套,面向进程的。不知道用什么合适了,请教高手一下,谢谢!
(貌似System V的信号量是不支持名字的,pthread直接面向进程)

论坛徽章:
0
2 [报告]
发表于 2010-03-22 15:00 |只看该作者
System V的信号量是不支持名字,但是支持路径,但必须是一个确确实实存在的文件:
  1. NAME
  2.        ftok - convert a pathname and a project identifier to a System V IPC key

  3. SYNOPSIS
  4.        # include <sys/types.h>
  5.        # include <sys/ipc.h>

  6.        key_t ftok(const char *pathname, int proj_id);

  7. DESCRIPTION
  8.        The  ftok()  function  uses  the  identity of the file named by the given pathname
  9.        (which must refer to an existing, accessible file) and  the  least  significant  8
  10.        bits  of  proj_id  (which  must be non-zero) to generate a key_t type System V IPC
  11.        key, suitable for use with msgget(2), semget(2), or shmget(2).

  12.        The resulting value is the same for all pathnames that name the  same  file,  when
  13.        the same value of proj_id is used. The value returned should be different when the
  14.        (simultaneously existing) files or the project IDs differ.

  15. RETURN VALUE
  16.        On success the generated key_t value is returned. On failure -1 is returned,  with
  17.        errno indicating the error as for the stat(2) system call.
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP