Skip to content

Commit

Permalink
* sysdeps/unix/sysv/linux/syscalls.list (epoll_create, epoll_ctl,
Browse files Browse the repository at this point in the history
	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.
  • Loading branch information
Ulrich Drepper committed Nov 15, 2005
1 parent fcae3b7 commit 933c64a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2005-11-15 Ulrich Drepper <drepper@redhat.com>

* 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.

2005-11-14 Ulrich Drepper <drepper@redhat.com>

* elf/dl-open.c [!SHARED]: Remove _dl_tls_static_size definition.
Expand Down
2 changes: 1 addition & 1 deletion io/sys/stat.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
6 changes: 3 additions & 3 deletions sysdeps/unix/sysv/linux/syscalls.list
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ capset EXTRA capset i:pp capset
creat - creat Ci:si __libc_creat creat
create_module EXTRA create_module 3 create_module
delete_module EXTRA delete_module 3 delete_module
epoll_create EXTRA epoll_create i:i epoll_create
epoll_ctl EXTRA epoll_ctl i:iiip epoll_ctl
epoll_wait EXTRA epoll_wait i:ipii epoll_wait
epoll_create EXTRA epoll_create Ci:i epoll_create
epoll_ctl EXTRA epoll_ctl Ci:iiip epoll_ctl
epoll_wait EXTRA epoll_wait Ci:ipii epoll_wait
fdatasync - fdatasync i:i fdatasync
flock - flock i:ii __flock flock
fork - fork i: __libc_fork __fork fork
Expand Down

0 comments on commit 933c64a

Please sign in to comment.