blob: f33be4627f26dd1b25255bd6c15b1449d8822366 [file] [log] [blame]
#ifndef FIO_PSHARED_H
#define FIO_PSHARED_H
#include <pthread.h>
extern int mutex_init_pshared_with_type(pthread_mutex_t *, int);
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