Commit | Line | Data |
---|---|---|
ae626d4e BVA |
1 | #ifndef FIO_PSHARED_H |
2 | #define FIO_PSHARED_H | |
3 | ||
4 | #include <pthread.h> | |
5 | ||
3ed6894b | 6 | extern int mutex_init_pshared_with_type(pthread_mutex_t *, int); |
ae626d4e BVA |
7 | extern int mutex_init_pshared(pthread_mutex_t *); |
8 | extern int cond_init_pshared(pthread_cond_t *); | |
9 | extern int mutex_cond_init_pshared(pthread_mutex_t *, pthread_cond_t *); | |
10 | ||
11 | #endif |