(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / sysdeps / mach / hurd / recv.c
bloba2b8fd5be53a3690abf47da2f13a91c61e8bcc6f
1 /* Copyright (C) 1994, 1997, 2001 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
19 #include <errno.h>
20 #include <sys/socket.h>
21 #include <hurd.h>
22 #include <hurd/fd.h>
23 #include <hurd/socket.h>
24 #include <string.h>
26 /* Read N bytes into BUF from socket FD.
27 Returns the number read or -1 for errors. */
29 /* XXX should be __recv ? */
30 ssize_t
31 recv (fd, buf, n, flags)
32 int fd;
33 void *buf;
34 size_t n;
35 int flags;
37 error_t err;
38 mach_port_t addrport;
39 char *bufp = buf;
40 mach_msg_type_number_t nread = n;
41 mach_port_t *ports;
42 mach_msg_type_number_t nports;
43 char *cdata = NULL;
44 mach_msg_type_number_t clen = 0;
46 if (err = HURD_DPORT_USE (fd, __socket_recv (port, &addrport,
47 flags, &bufp, &nread,
48 &ports, &nports,
49 &cdata, &clen,
50 &flags,
51 n)))
52 return __hurd_dfail (fd, err);
54 __mach_port_deallocate (__mach_task_self (), addrport);
55 __vm_deallocate (__mach_task_self (), (vm_address_t) cdata, clen);
57 if (bufp != buf)
59 memcpy (buf, bufp, nread);
60 __vm_deallocate (__mach_task_self (), (vm_address_t) bufp, nread);
63 return nread;