Home | History | Annotate | Download | only in fio
      1 #ifndef FIO_LOCK_FILE_H
      2 #define FIO_LOCK_FILE_H
      3 
      4 extern void fio_lock_file(const char *);
      5 extern int fio_trylock_file(const char *);
      6 extern void fio_unlock_file(const char *);
      7 
      8 extern int fio_filelock_init(void);
      9 extern void fio_filelock_exit(void);
     10 
     11 #endif
     12