diff options
author | Jakub Jelinek <jakub@redhat.com> | 2007-07-12 15:19:59 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2007-07-12 15:19:59 +0000 |
commit | 0f2401c5eaf467c499f3b7ed58773b6ca5316acc (patch) | |
tree | 57f671d66b43c6034e2ba1b654e52eafd10770f2 /posix | |
parent | b4696b570a51c684e323de6ce8770ff99008adc5 (diff) |
2007-05-06 Ulrich Drepper <drepper@redhat.com>
[BZ #4465]
* posix/unistd.h: Remove __THROW from fdatasync.
2007-05-06 Mike Frysinger <vapier@gentoo.org>
[BZ #4465]
* sysdeps/unix/sysv/linux/syscalls.list (fdatasync): Add "C" to args.
[BZ #4465]
* tst-cancel-wrappers.sh: Set C["fdatasync"] to 1.
* tst-cancel4.c (tf_fdatasync): New test.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/unistd.h b/posix/unistd.h index 5a88de269c..3be7e41426 100644 --- a/posix/unistd.h +++ b/posix/unistd.h @@ -1062,7 +1062,7 @@ extern int lockf64 (int __fd, int __cmd, __off64_t __len) __wur; #if defined __USE_POSIX199309 || defined __USE_UNIX98 /* Synchronize at least the data part of a file with the underlying media. */ -extern int fdatasync (int __fildes) __THROW; +extern int fdatasync (int __fildes); #endif /* Use POSIX199309 */ |