diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-11-15 19:59:57 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-11-15 19:59:57 +0000 |
commit | 933c64a356e129481238b6e2bf4b75e4e23a0b90 (patch) | |
tree | 6817c4c0e03bfa70bfa3a86e419d4c8a95099d12 /io | |
parent | fcae3b76f63626b0e587f8e3b40191136e36041b (diff) | |
download | glibc-933c64a356e129481238b6e2bf4b75e4e23a0b90.tar.gz glibc-933c64a356e129481238b6e2bf4b75e4e23a0b90.tar.xz glibc-933c64a356e129481238b6e2bf4b75e4e23a0b90.zip |
* sysdeps/unix/sysv/linux/syscalls.list (epoll_create, epoll_ctl,
epoll_wait): Align with poll, make cancelable. 2005-11-15 Jakub Jelinek <jakub@redhat.com> * io/sys/stat.h (fstatat): Don't use __THROW together with __REDIRECT_NTH.
Diffstat (limited to 'io')
-rw-r--r-- | io/sys/stat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/io/sys/stat.h b/io/sys/stat.h index 0a82ef39e8..87eca61275 100644 --- a/io/sys/stat.h +++ b/io/sys/stat.h @@ -238,7 +238,7 @@ extern int fstatat (int __fd, const char *__file, struct stat *__buf, # else extern int __REDIRECT_NTH (fstatat, (int __fd, const char *__file, struct stat *__buf, int __flag), - fstatat64) __THROW __nonnull ((2, 3)); + fstatat64) __nonnull ((2, 3)); # endif extern int fstatat64 (int __fd, const char *__file, struct stat64 *__buf, |