当前位置: 技术问答>linux和unix
sem_t的数据结构是什么?
来源: 互联网 发布时间:2015-10-08
本文导语: 这个结构好像在#include 中,但是又不知道这个文件放在什么地方? 另外,还有个atomic_t的数据结构在哪里啊?它是个什么结构? 谢谢啦 | /usr/include/semaphore.h typedef struct { struct _pthread_fastlock __sem_lo...
这个结构好像在#include 中,但是又不知道这个文件放在什么地方?
另外,还有个atomic_t的数据结构在哪里啊?它是个什么结构?
谢谢啦
另外,还有个atomic_t的数据结构在哪里啊?它是个什么结构?
谢谢啦
|
/usr/include/semaphore.h
typedef struct
{
struct _pthread_fastlock __sem_lock;
int __sem_value;
_pthread_descr __sem_waiting;
} sem_t;
typedef struct
{
struct _pthread_fastlock __sem_lock;
int __sem_value;
_pthread_descr __sem_waiting;
} sem_t;
|
semaphore.h里好象是对semaphore结构的定义,文件在:
/usr/src/linux-2.4/include/asm
/usr/src/linux-2.4/include/asm
|
你查一下semaphore,有可能里面有介绍这个数据结构的。在命令行输入
man semaphore
man semaphore
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。