home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / armlinux / alpha / PARTITIONS / USR_GZ / usr / include / sys / msg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-14  |  495 b   |  21 lines

  1. #ifndef _SYS_MSG_H
  2. #define _SYS_MSG_H
  3.  
  4. #include <features.h>
  5.  
  6. #include <sys/ipc.h>
  7. #include <linux/msg.h>
  8.  
  9. __BEGIN_DECLS
  10.  
  11. extern int msgget __P((key_t __key, int __msgflg));
  12. extern int msgsnd __P((int __msqid, struct msgbuf *__msgp, int __msgsz, 
  13.                int __msgflg));
  14. extern int msgrcv __P((int __msqid, struct msgbuf *__msgp, int __msgsz,
  15.                long __msgtyp, int __msgflg));
  16. extern int msgctl __P((int __msqid, int __cmd, struct msqid_ds *__buf));
  17.  
  18. __END_DECLS
  19.  
  20. #endif /* _SYS_MSG_H */
  21.