10 Star 15 Fork 5

anolis / fio

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
fio_sem.h 674 Bytes
一键复制 编辑 原始数据 按行查看 历史
Bart Van Assche 提交于 2018-03-14 08:31 . Rename fio_mutex into fio_sem
#ifndef FIO_SEM_H
#define FIO_SEM_H
#include <pthread.h>
#include "lib/types.h"
#define FIO_SEM_MAGIC 0x4d555445U
struct fio_sem {
pthread_mutex_t lock;
pthread_cond_t cond;
int value;
int waiters;
int magic;
};
enum {
FIO_SEM_LOCKED = 0,
FIO_SEM_UNLOCKED = 1,
};
extern int __fio_sem_init(struct fio_sem *, int);
extern struct fio_sem *fio_sem_init(int);
extern void __fio_sem_remove(struct fio_sem *);
extern void fio_sem_remove(struct fio_sem *);
extern void fio_sem_up(struct fio_sem *);
extern void fio_sem_down(struct fio_sem *);
extern bool fio_sem_down_trylock(struct fio_sem *);
extern int fio_sem_down_timeout(struct fio_sem *, unsigned int);
#endif
1
https://gitee.com/anolis/fio.git
git@gitee.com:anolis/fio.git
anolis
fio
fio
an8

搜索帮助