ipc.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __m68k_IPC_H__
  2. #define __m68k_IPC_H__
  3. /* 
  4.  * These are used to wrap system calls on m68k.
  5.  *
  6.  * See arch/m68k/kernel/sys_m68k.c for ugly details..
  7.  */
  8. struct ipc_kludge {
  9. struct msgbuf *msgp;
  10. long msgtyp;
  11. };
  12. #define SEMOP  1
  13. #define SEMGET  2
  14. #define SEMCTL  3
  15. #define MSGSND 11
  16. #define MSGRCV 12
  17. #define MSGGET 13
  18. #define MSGCTL 14
  19. #define SHMAT 21
  20. #define SHMDT 22
  21. #define SHMGET 23
  22. #define SHMCTL 24
  23. /* Used by the DIPC package, try and avoid reusing it */
  24. #define DIPC 25
  25. #define IPCCALL(version,op) ((version)<<16 | (op))
  26. #endif