mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
* socket/Versions: Remove paccept export for GLIBC_2.9.
* socket/Makefile (routines): Remove paccept. * socket/sys/socket.h: Remove paccept declaration.
This commit is contained in:
parent
54ad93272e
commit
8ec2550e18
@ -1,5 +1,9 @@
|
|||||||
2008-09-29 Ulrich Drepper <drepper@redhat.com>
|
2008-09-29 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* socket/Versions: Remove paccept export for GLIBC_2.9.
|
||||||
|
* socket/Makefile (routines): Remove paccept.
|
||||||
|
* socket/sys/socket.h: Remove paccept declaration.
|
||||||
|
|
||||||
* po/sv.po: Update from translation team.
|
* po/sv.po: Update from translation team.
|
||||||
|
|
||||||
2008-09-22 Deborah S. Townsend <dstownse@us.ibm.com>
|
2008-09-22 Deborah S. Townsend <dstownse@us.ibm.com>
|
||||||
|
4
NEWS
4
NEWS
@ -1,4 +1,4 @@
|
|||||||
GNU C Library NEWS -- history of user-visible changes. 2008-9-16
|
GNU C Library NEWS -- history of user-visible changes. 2008-9-29
|
||||||
Copyright (C) 1992-2007, 2008 Free Software Foundation, Inc.
|
Copyright (C) 1992-2007, 2008 Free Software Foundation, Inc.
|
||||||
See the end for copying conditions.
|
See the end for copying conditions.
|
||||||
|
|
||||||
@ -23,7 +23,7 @@ Version 2.9
|
|||||||
* New implementation of memmem, strstr, and strcasestr which is O(n).
|
* New implementation of memmem, strstr, and strcasestr which is O(n).
|
||||||
Implemented by Eric Blake.
|
Implemented by Eric Blake.
|
||||||
|
|
||||||
* New Linux interfaces: inotify_init1, paccept, dup3, epoll_create1, pipe2
|
* New Linux interfaces: inotify_init1, dup3, epoll_create1, pipe2
|
||||||
|
|
||||||
* Implement "e" option for popen to open file descriptor with the
|
* Implement "e" option for popen to open file descriptor with the
|
||||||
close-on-exec flag set. Implemented by Ulrich Drepper.
|
close-on-exec flag set. Implemented by Ulrich Drepper.
|
||||||
|
@ -27,7 +27,7 @@ headers := sys/socket.h sys/un.h bits/sockaddr.h bits/socket.h \
|
|||||||
routines := accept bind connect getpeername getsockname getsockopt \
|
routines := accept bind connect getpeername getsockname getsockopt \
|
||||||
listen recv recvfrom recvmsg send sendmsg sendto \
|
listen recv recvfrom recvmsg send sendmsg sendto \
|
||||||
setsockopt shutdown socket socketpair isfdtype opensock \
|
setsockopt shutdown socket socketpair isfdtype opensock \
|
||||||
sockatmark paccept
|
sockatmark
|
||||||
|
|
||||||
aux := have_sock_cloexec
|
aux := have_sock_cloexec
|
||||||
|
|
||||||
|
@ -31,7 +31,4 @@ libc {
|
|||||||
# Addition from P1003.1-200x
|
# Addition from P1003.1-200x
|
||||||
sockatmark;
|
sockatmark;
|
||||||
}
|
}
|
||||||
GLIBC_2.9 {
|
|
||||||
paccept;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -214,18 +214,6 @@ extern int listen (int __fd, int __n) __THROW;
|
|||||||
extern int accept (int __fd, __SOCKADDR_ARG __addr,
|
extern int accept (int __fd, __SOCKADDR_ARG __addr,
|
||||||
socklen_t *__restrict __addr_len);
|
socklen_t *__restrict __addr_len);
|
||||||
|
|
||||||
#ifdef __USE_GNU
|
|
||||||
/* Variant of the accept function which takes additional parameters. The
|
|
||||||
MASK parameter allows to change the thread signal mask for the duration
|
|
||||||
of the call. The FLAGS parameter allows to pass additional flags.
|
|
||||||
|
|
||||||
This function is a cancellation point and therefore not marked with
|
|
||||||
__THROW. */
|
|
||||||
extern int paccept (int __fd, __SOCKADDR_ARG __addr,
|
|
||||||
socklen_t *__restrict __addr_len,
|
|
||||||
__const __sigset_t *__restrict __ss, int __flags);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Shut down all or part of the connection open on socket FD.
|
/* Shut down all or part of the connection open on socket FD.
|
||||||
HOW determines what to shut down:
|
HOW determines what to shut down:
|
||||||
SHUT_RD = No more receptions;
|
SHUT_RD = No more receptions;
|
||||||
|
Loading…
Reference in New Issue
Block a user