summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/msgrcv.c
blob: 8168187a56399e3aa709f15ba384f7e38d495416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>

extern int __ipc(int,int,size_t,int,void*);

struct ipc_kludge {
  struct msgbuf *msgp;
  long msgtyp;
};

int msgrcv(int msqid, void *msgp, size_t msgsz, long int msgtyp, int msgflg) {
  struct ipc_kludge tmp;
  tmp.msgp = msgp;
  tmp.msgtyp = msgtyp;
  return __ipc(MSGRCV,msqid, msgsz, msgflg, &tmp);
}