msg.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_MSG_H
  2. #define _LINUX_MSG_H
  3. #include <linux/ipc.h>
  4. #include <linux/list.h>
  5. /* ipcs ctl commands */
  6. #define MSG_STAT 11
  7. #define MSG_INFO 12
  8. /* msgrcv options */
  9. #define MSG_NOERROR     010000  /* no error if message is too big */
  10. #define MSG_EXCEPT      020000  /* recv any msg except of specified type.*/
  11. /* Obsolete, used only for backwards compatibility and libc5 compiles */
  12. struct msqid_ds {
  13. struct ipc_perm msg_perm;
  14. struct msg *msg_first; /* first message on queue,unused  */
  15. struct msg *msg_last; /* last message in queue,unused */
  16. __kernel_time_t msg_stime; /* last msgsnd time */
  17. __kernel_time_t msg_rtime; /* last msgrcv time */
  18. __kernel_time_t msg_ctime; /* last change time */
  19. unsigned long  msg_lcbytes; /* Reuse junk fields for 32 bit */
  20. unsigned long  msg_lqbytes; /* ditto */
  21. unsigned short msg_cbytes; /* current number of bytes on queue */
  22. unsigned short msg_qnum; /* number of messages in queue */
  23. unsigned short msg_qbytes; /* max number of bytes on queue */
  24. __kernel_ipc_pid_t msg_lspid; /* pid of last msgsnd */
  25. __kernel_ipc_pid_t msg_lrpid; /* last receive pid */
  26. };
  27. /* Include the definition of msqid64_ds */
  28. #include <asm/msgbuf.h>
  29. /* message buffer for msgsnd and msgrcv calls */
  30. struct msgbuf {
  31. long mtype;         /* type of message */
  32. char mtext[1];      /* message text */
  33. };
  34. /* buffer for msgctl calls IPC_INFO, MSG_INFO */
  35. struct msginfo {
  36. int msgpool;
  37. int msgmap; 
  38. int msgmax; 
  39. int msgmnb; 
  40. int msgmni; 
  41. int msgssz; 
  42. int msgtql; 
  43. unsigned short  msgseg; 
  44. };
  45. #define MSGMNI    16   /* <= IPCMNI */     /* max # of msg queue identifiers */
  46. #define MSGMAX  8192   /* <= INT_MAX */   /* max size of message (bytes) */
  47. #define MSGMNB 16384   /* <= INT_MAX */   /* default max size of a message queue */
  48. /* unused */
  49. #define MSGPOOL (MSGMNI*MSGMNB/1024)  /* size in kilobytes of message pool */
  50. #define MSGTQL  MSGMNB            /* number of system message headers */
  51. #define MSGMAP  MSGMNB            /* number of entries in message map */
  52. #define MSGSSZ  16                /* message segment size */
  53. #define __MSGSEG ((MSGPOOL*1024)/ MSGSSZ) /* max no. of segments */
  54. #define MSGSEG (__MSGSEG <= 0xffff ? __MSGSEG : 0xffff)
  55. #ifdef __KERNEL__
  56. /* one msg_msg structure for each message */
  57. struct msg_msg {
  58. struct list_head m_list; 
  59. long  m_type;          
  60. int m_ts;           /* message text size */
  61. struct msg_msgseg* next;
  62. void *security;
  63. /* the actual message follows immediately */
  64. };
  65. /* one msq_queue structure for each present queue on the system */
  66. struct msg_queue {
  67. struct kern_ipc_perm q_perm;
  68. int q_id;
  69. time_t q_stime; /* last msgsnd time */
  70. time_t q_rtime; /* last msgrcv time */
  71. time_t q_ctime; /* last change time */
  72. unsigned long q_cbytes; /* current number of bytes on queue */
  73. unsigned long q_qnum; /* number of messages in queue */
  74. unsigned long q_qbytes; /* max number of bytes on queue */
  75. pid_t q_lspid; /* pid of last msgsnd */
  76. pid_t q_lrpid; /* last receive pid */
  77. struct list_head q_messages;
  78. struct list_head q_receivers;
  79. struct list_head q_senders;
  80. };
  81. #endif /* __KERNEL__ */
  82. #endif /* _LINUX_MSG_H */