Blame pshared.h

Packit 8930e1
#ifndef FIO_PSHARED_H
Packit 8930e1
#define FIO_PSHARED_H
Packit 8930e1
Packit 8930e1
#include <pthread.h>
Packit 8930e1
Packit 8930e1
extern int mutex_init_pshared(pthread_mutex_t *);
Packit 8930e1
extern int cond_init_pshared(pthread_cond_t *);
Packit 8930e1
extern int mutex_cond_init_pshared(pthread_mutex_t *, pthread_cond_t *);
Packit 8930e1
Packit 8930e1
#endif