aboutsummaryrefslogtreecommitdiffstats
path: root/fio_sem.h
blob: a796ddd74d7dda4cb328c68efce4b3f2705a8895 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#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