mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
1999-10-10 Andreas Jaeger <aj@suse.de> * misc/sgtty.h: Fix typo in last patch. * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
1999-10-10 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
* misc/sgtty.h: Fix typo in last patch.
|
||||||
|
|
||||||
1999-10-09 Ulrich Drepper <drepper@cygnus.com>
|
1999-10-09 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* nss/getXXbyYY_r.c (do_weak_alias): Remove unnecessary parenthesis.
|
* nss/getXXbyYY_r.c (do_weak_alias): Remove unnecessary parenthesis.
|
||||||
@ -160,7 +164,7 @@
|
|||||||
* sunrpc/rpc/svc_auth.h: Likewise.
|
* sunrpc/rpc/svc_auth.h: Likewise.
|
||||||
* sunrpc/rpc/xdr.h: Likewise.
|
* sunrpc/rpc/xdr.h: Likewise.
|
||||||
* sysdeps/unix/sysv/linux/bits/sigstack.h: Likewise.
|
* sysdeps/unix/sysv/linux/bits/sigstack.h: Likewise.
|
||||||
* sysdeps/unix/sysv/linux/bitssocket.h: Likewise.
|
* sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
|
||||||
* sysvipc/sys/ipc.h: Likewise.
|
* sysvipc/sys/ipc.h: Likewise.
|
||||||
* sysvipc/sys/msg.h: Likewise.
|
* sysvipc/sys/msg.h: Likewise.
|
||||||
* sysvipc/sys/sem.h: Likewise.
|
* sysvipc/sys/sem.h: Likewise.
|
||||||
|
@ -30,7 +30,7 @@ struct sgttyb;
|
|||||||
__BEGIN_DECLS
|
__BEGIN_DECLS
|
||||||
|
|
||||||
/* Fill in *PARAMS with terminal parameters associated with FD. */
|
/* Fill in *PARAMS with terminal parameters associated with FD. */
|
||||||
extern int gtty patch(int __fd, struct sgttyb *__params) __THROW;
|
extern int gtty (int __fd, struct sgttyb *__params) __THROW;
|
||||||
|
|
||||||
/* Set the terminal parameters associated with FD to *PARAMS. */
|
/* Set the terminal parameters associated with FD to *PARAMS. */
|
||||||
extern int stty (int __fd, __const struct sgttyb *__params) __THROW;
|
extern int stty (int __fd, __const struct sgttyb *__params) __THROW;
|
||||||
|
@ -203,13 +203,13 @@ enum
|
|||||||
`sendmsg' and received by `recvmsg'. */
|
`sendmsg' and received by `recvmsg'. */
|
||||||
struct msghdr
|
struct msghdr
|
||||||
{
|
{
|
||||||
__ptr_t msg_name; /* Address to send to/receive from. */
|
void *msg_name; /* Address to send to/receive from. */
|
||||||
socklen_t msg_namelen; /* Length of address data. */
|
socklen_t msg_namelen; /* Length of address data. */
|
||||||
|
|
||||||
struct iovec *msg_iov; /* Vector of data to send/receive into. */
|
struct iovec *msg_iov; /* Vector of data to send/receive into. */
|
||||||
size_t msg_iovlen; /* Number of elements in the vector. */
|
size_t msg_iovlen; /* Number of elements in the vector. */
|
||||||
|
|
||||||
__ptr_t msg_control; /* Ancillary data (eg BSD filedesc passing). */
|
void *msg_control; /* Ancillary data (eg BSD filedesc passing). */
|
||||||
size_t msg_controllen; /* Ancillary data buffer length. */
|
size_t msg_controllen; /* Ancillary data buffer length. */
|
||||||
|
|
||||||
int msg_flags; /* Flags on received message. */
|
int msg_flags; /* Flags on received message. */
|
||||||
|
Reference in New Issue
Block a user