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 / msgctl.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-04  |  169 b   |  11 lines

  1. #include <syscall.h>
  2.  
  3. #define __KERNEL__ 
  4. #include <sys/msg.h>
  5.  
  6. int
  7. msgctl (int msqid, int cmd, struct msqid_ds *buf)
  8. {
  9.     return __ipc (MSGCTL, msqid, cmd, 0, buf);
  10. }
  11.