公告板
版本库
filestore
活动
搜索
登录
valib
/
c_bhomebus
shm的c++通讯库
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
restructure
wangzhengquan
2021-01-21
2c65db46500207f8445aa4baa53bfbb6602e0e18
[valib/c_bhomebus.git]
/
src
/
futex_sem.cpp
1
2
3
4
5
6
7
8
#include "futex_sem.h"
int futex(int *uaddr, int futex_op, int val,
const struct timespec *timeout, int *uaddr2, int val3)
{
return syscall(SYS_futex, uaddr, futex_op, val, timeout, uaddr, val3);
}