Add <sys/auxv.h> and getauxval.
[glibc.git] / sysdeps / unix / sysv / linux / msgrcv.c
blob0b47ce7bbe12594547463122348c5645b1df27d1
1 /* Copyright (C) 1995,1997,1998,2000,2002,2006 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <sys/msg.h>
21 #include <ipc_priv.h>
23 #include <sysdep-cancel.h>
24 #include <sys/syscall.h>
26 #include <bp-checks.h>
28 /* Kludge to work around Linux' restriction of only up to five
29 arguments to a system call. */
30 struct ipc_kludge
32 void *__unbounded msgp;
33 long int msgtyp;
37 ssize_t
38 __libc_msgrcv (msqid, msgp, msgsz, msgtyp, msgflg)
39 int msqid;
40 void *msgp;
41 size_t msgsz;
42 long int msgtyp;
43 int msgflg;
45 /* The problem here is that Linux' calling convention only allows up to
46 fives parameters to a system call. */
47 struct ipc_kludge tmp;
49 tmp.msgp = CHECK_N (msgp, msgsz);
50 tmp.msgtyp = msgtyp;
52 if (SINGLE_THREAD_P)
53 return INLINE_SYSCALL (ipc, 5, IPCOP_msgrcv, msqid, msgsz, msgflg,
54 __ptrvalue (&tmp));
56 int oldtype = LIBC_CANCEL_ASYNC ();
58 ssize_t result = INLINE_SYSCALL (ipc, 5, IPCOP_msgrcv, msqid, msgsz, msgflg,
59 __ptrvalue (&tmp));
61 LIBC_CANCEL_RESET (oldtype);
63 return result;
65 weak_alias (__libc_msgrcv, msgrcv)