设为首页
收藏本站
用户名
Email
自动登录
找回密码
密码
登录
注册
快捷导航
平台
Portal
论坛
BBS
文库
项目
群组
Group
我的博客
Space
搜索
搜索
热搜:
shell
linux
mysql
本版
用户
LinuxSir.cn,穿越时空的Linuxsir!
»
论坛
›
编程开发讨论区 —— LinuxSir.cn
›
Linux 程序设计专题讨论
›
找不到读写锁的定义
返回列表
查看:
1029
|
回复:
1
找不到读写锁的定义
[复制链接]
asert
asert
当前离线
积分
617
IP卡
狗仔卡
发表于 2008-4-27 21:05:53
|
显示全部楼层
|
阅读模式
pthread_rwlock_t
pthread_rwlock_wrlock(pthread_rwlock_t *__rwlock)
pthread_rwlock_rdlock(pthread_rwlock_t *__rwlock)
pthread_rwlock_unlock(pthread_rwlock_t *__rwlock)
在我的debian stable(内核版本是 2.6.18-4-686)系统里引用上面的读写锁的类型和函数会导致编译通不过,但是在公司的debian testing系统里却没有任何问题,这是怎么回事?
我注意到了在pthreadtypes.h头文件中下面的定义:
#if defined __USE_UNIX98 || defined __USE_XOPEN2K
/* Read-write locks. */
typedef struct _pthread_rwlock_t
{
struct _pthread_fastlock __rw_lock; /* Lock to guarantee mutual exclusion */
int __rw_readers; /* Number of readers */
_pthread_descr __rw_writer; /* Identity of writer, or NULL if none */
_pthread_descr __rw_read_waiting; /* Threads waiting for reading */
_pthread_descr __rw_write_waiting; /* Threads waiting for writing */
int __rw_kind; /* Reader/Writer preference selection */
int __rw_pshared; /* Shared between processes or not */
} pthread_rwlock_t;
/* Attribute for read-write locks. */
typedef struct
{
int __lockkind;
int __pshared;
} pthread_rwlockattr_t;
#endif
复制代码
在debian stable里__USE_UNIX98和__USE_XOPEN2K宏没有被定义吗?
回复
使用道具
举报
提升卡
置顶卡
沉默卡
喧嚣卡
变色卡
显身卡
remote fish
remote fish
当前离线
积分
704
IP卡
狗仔卡
发表于 2008-4-28 12:36:53
|
显示全部楼层
在我这里, __USE_UNIX98 是在 <features.h> 中定义的, 它在 _XOPEN_SOURCE >= 500 的时候被定义, 而 _XOPEN_SOURCE 在 _GNU_SOURCE 被定义的时候被定义
楼主 include <pthread.h> 之前定义一下 _GNU_SOURCE 或者 __USE_UNIX98 看看有什么效果?
回复
支持
反对
使用道具
举报
显身卡
返回列表
高级模式
B
Color
Image
Link
Quote
Code
Smilies
您需要登录后才可以回帖
登录
|
注册
本版积分规则
发表回复
回帖后跳转到最后一页
Copyright © 2002-2023
LinuxSir.cn
(http://www.linuxsir.cn/) 版权所有 All Rights Reserved.
Powered by
RedflagLinux!
技术支持:
中科红旗
|
京ICP备19024520号
快速回复
返回顶部
返回列表