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

Linux/Unix编程

开发平台:

Unix_Linux

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