flock.h 184 B

1234567891011
  1. #define fsync _commit
  2. #define ftruncate chsize
  3. /* For flock() emulation */
  4. #define LOCK_SH 1
  5. #define LOCK_EX 2
  6. #define LOCK_NB 4
  7. #define LOCK_UN 8
  8. PHPAPI int flock(int fd, int op);