blob: a58df6fe0b453802843eaed0ec990199c9a62752 [file] [log] [blame]
#ifndef FIO_PSHARED_H
#define FIO_PSHARED_H
#include <pthread.h>
extern int mutex_init_pshared(pthread_mutex_t *);
extern int cond_init_pshared(pthread_cond_t *);
extern int mutex_cond_init_pshared(pthread_mutex_t *, pthread_cond_t *);
#endif