home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / LIBC / LIBC-4.6 / LIBC-4 / libc-linux / sysdeps / linux / msgrcv.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-04  |  278 b   |  14 lines

  1. #include <syscall.h>
  2.  
  3. #define __KERNEL__ 
  4. #include <sys/msg.h>
  5.  
  6. int
  7. msgrcv (int msqid, struct msgbuf *msgp, int msgsz, long msgtyp, int msgflg)
  8. {
  9.     struct ipc_kludge tmp; 
  10.     tmp.msgp = msgp;
  11.     tmp.msgtyp = msgtyp; 
  12.     return __ipc (MSGRCV, msqid, msgsz, msgflg, &tmp);
  13. }
  14.