Merge branch 'epoch-time-hist-logs' of https://github.com/parallel-fs-utils/fio
[fio.git] / pshared.h
CommitLineData
ae626d4e
BVA
1#ifndef FIO_PSHARED_H
2#define FIO_PSHARED_H
3
4#include <pthread.h>
5
6extern int mutex_init_pshared(pthread_mutex_t *);
7extern int cond_init_pshared(pthread_cond_t *);
8extern int mutex_cond_init_pshared(pthread_mutex_t *, pthread_cond_t *);
9
10#endif