document the new binlog stats
[beanstalkd.git] / port-linux.c
blob2394136edfa35876812f35ecb2f8413b1fd5afcc
1 #define _XOPEN_SOURCE 600
2 #include <stdint.h>
3 #include <fcntl.h>
4 #include "dat.h"
6 /* Allocate disk space.
7 * Expects fd's offset to be 0; may also reset fd's offset to 0.
8 * Returns 0 on success, and a positive errno otherwise. */
9 int
10 falloc(int fd, int len)
12 return posix_fallocate(fd, 0, len);