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

Linux/Unix编程

开发平台:

Unix_Linux

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