aboutsummaryrefslogtreecommitdiff
path: root/socket/sys
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2008-09-29 17:08:50 +0000
committerUlrich Drepper <drepper@redhat.com>2008-09-29 17:08:50 +0000
commit8ec2550e18dcc37958ec17eb2de3ab34ab879d1e (patch)
treed802ed8ea5e90e17281ff221b72334bdd6603897 /socket/sys
parent54ad93272ee3764182e765d737f262102fa3aed0 (diff)
downloadglibc-8ec2550e18dcc37958ec17eb2de3ab34ab879d1e.zip
glibc-8ec2550e18dcc37958ec17eb2de3ab34ab879d1e.tar.gz
glibc-8ec2550e18dcc37958ec17eb2de3ab34ab879d1e.tar.bz2
* socket/Versions: Remove paccept export for GLIBC_2.9.
* socket/Makefile (routines): Remove paccept. * socket/sys/socket.h: Remove paccept declaration.
Diffstat (limited to 'socket/sys')
-rw-r--r--socket/sys/socket.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/socket/sys/socket.h b/socket/sys/socket.h
index ea4123d..e0a6a52 100644
--- a/socket/sys/socket.h
+++ b/socket/sys/socket.h
@@ -214,18 +214,6 @@ extern int listen (int __fd, int __n) __THROW;
extern int accept (int __fd, __SOCKADDR_ARG __addr,
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.
HOW determines what to shut down:
SHUT_RD = No more receptions;