diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-04-01 11:15:08 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-04-01 11:15:08 -0400 |
commit | 748876bf1c45cd10f998f8578c434156eae53b7e (patch) | |
tree | 2fcf11637d6246f8e4783a4ad6a4c9aff9ca972f /io | |
parent | 6e63d5e1aebc659a95223cf8862a7b42c67dbb1c (diff) | |
download | glibc-748876bf1c45cd10f998f8578c434156eae53b7e.tar.gz |
Really implement fallocate{,64} and sync_file_range as cancellation points.
Diffstat (limited to 'io')
-rw-r--r-- | io/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/io/Makefile b/io/Makefile index caaa51b351..0f3b555446 100644 --- a/io/Makefile +++ b/io/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1992-2003,2005,2006,2007,2008 Free Software Foundation, Inc. +# Copyright (C) 1992-2003,2005-2008,2011 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -90,6 +90,9 @@ CFLAGS-ftw64.c = $(uses-callbacks) -fexceptions CFLAGS-lockf.c = -fexceptions CFLAGS-posix_fallocate.c = -fexceptions CFLAGS-posix_fallocate64.c = -fexceptions +CFLAGS-fallocate.c = -fexceptions +CFLAGS-fallocate64.c = -fexceptions +CFLAGS-sync_file_range.c = -fexceptions CFLAGS-test-stat.c = -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE CFLAGS-test-lfs.c = -D_LARGEFILE64_SOURCE |