ipc.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __ASMARM_IPC_H
  2. #define __ASMARM_IPC_H
  3. /* 
  4.  * These are used to wrap system calls on ARM.
  5.  *
  6.  * See arch/arm/kernel/sys-arm.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. #define IPCCALL(version,op) ((version)<<16 | (op))
  24. #endif