mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
12 lines
184 B
C
12 lines
184 B
C
#define fsync _commit
|
|
#define ftruncate chsize
|
|
|
|
/* For flock() emulation */
|
|
|
|
#define LOCK_SH 1
|
|
#define LOCK_EX 2
|
|
#define LOCK_NB 4
|
|
#define LOCK_UN 8
|
|
|
|
PHPAPI int flock(int fd, int op);
|