1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

2009-03-17 Ryan S. Arnold <rsa@us.ibm.com>

Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/unix/sysv/linux/fallocate.c: Handle old kernel headers.
	* sysdeps/unix/sysv/linux/fallocate64.c: Likewise.
This commit is contained in:
Ulrich Drepper
2009-04-15 00:39:57 +00:00
parent fc0c57057e
commit 353f210707
3 changed files with 16 additions and 0 deletions

View File

@ -25,7 +25,12 @@
int
fallocate (int fd, int mode, __off_t offset, __off_t len)
{
#ifndef __NR_fallocate
return INLINE_SYSCALL (fallocate, 6, fd, mode,
__LONG_LONG_PAIR (offset >> 31, offset),
__LONG_LONG_PAIR (len >> 31, len));
#else
__set_errno (ENOSYS);
return -1;
#endif
}