mirror of git://sourceware.org/git/glibc.git
* sysdeps/unix/bsd/bsd4.4/bits/socket.h: Define MSG_NOSIGNAL.
* hurd/hurd/fd.h (__hurd_sockfail): Add extern inline function. * sysdeps/mach/hurd/recv.c (__recv): Use __hurd_sockfail instead of __hurd_dfail. * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise. * sysdeps/mach/hurd/recvmsg.c (__recvmsg): Likewise. * sysdeps/mach/hurd/send.c (__send): Likewise. * sysdeps/mach/hurd/sendto.c (__sendfrom): Likewise. * sysdeps/mach/hurd/sendmsg.c (__sendmsg): Likewise.
This commit is contained in:
parent
e66ecb226e
commit
0a583b5419
12
ChangeLog
12
ChangeLog
|
|
@ -1,3 +1,15 @@
|
||||||
|
2008-07-01 Samuel Thibault <samuel.thibault@ens-lyon.org>
|
||||||
|
|
||||||
|
* sysdeps/unix/bsd/bsd4.4/bits/socket.h: Define MSG_NOSIGNAL.
|
||||||
|
* hurd/hurd/fd.h (__hurd_sockfail): Add extern inline function.
|
||||||
|
* sysdeps/mach/hurd/recv.c (__recv): Use __hurd_sockfail instead of
|
||||||
|
__hurd_dfail.
|
||||||
|
* sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise.
|
||||||
|
* sysdeps/mach/hurd/recvmsg.c (__recvmsg): Likewise.
|
||||||
|
* sysdeps/mach/hurd/send.c (__send): Likewise.
|
||||||
|
* sysdeps/mach/hurd/sendto.c (__sendfrom): Likewise.
|
||||||
|
* sysdeps/mach/hurd/sendmsg.c (__sendmsg): Likewise.
|
||||||
|
|
||||||
2008-06-27 Ulrich Drepper <drepper@redhat.com>
|
2008-06-27 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
[BZ #6657]
|
[BZ #6657]
|
||||||
|
|
|
||||||
|
|
@ -79,7 +79,7 @@ __sendto (int fd,
|
||||||
err;
|
err;
|
||||||
}));
|
}));
|
||||||
|
|
||||||
return err ? __hurd_dfail (fd, err) : wrote;
|
return err ? __hurd_sockfail (fd, flags, err) : wrote;
|
||||||
}
|
}
|
||||||
|
|
||||||
weak_alias (__sendto, sendto)
|
weak_alias (__sendto, sendto)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue