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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.ipc.h 1.5 05/17/01 18:14:24 cort
  3.  */
  4. #ifndef __PPC_IPC_H__
  5. #define __PPC_IPC_H__
  6. /* 
  7.  * These are used to wrap system calls on PowerPC.
  8.  *
  9.  * See arch/ppc/kernel/syscalls.c for ugly details..
  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. #define IPCCALL(version,op) ((version)<<16 | (op))
  27. #endif /* __PPC_IPC_H__ */