mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +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
|
||
|
|
||
|
extern int flock(int fd, int op);
|