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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Copyright (C) 2003 Krzysztof Benedyczak & Michal Wronski
  2.    This program is free software; you can redistribute it and/or
  3.    modify it under the terms of the GNU Lesser General Public
  4.    License as published by the Free Software Foundation; either
  5.    version 2.1 of the License, or (at your option) any later version.
  6.    It is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  9.    Lesser General Public License for more details.
  10.    You should have received a copy of the GNU Lesser General Public
  11.    License along with this software; if not, write to the Free
  12.    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  13.    02111-1307 USA.  */
  14. #ifndef _LINUX_MQUEUE_H
  15. #define _LINUX_MQUEUE_H
  16. #include <linux/types.h>
  17. #define MQ_PRIO_MAX  32768
  18. /* per-uid limit of kernel memory used by mqueue, in bytes */
  19. #define MQ_BYTES_MAX 819200
  20. struct mq_attr {
  21. long mq_flags; /* message queue flags */
  22. long mq_maxmsg; /* maximum number of messages */
  23. long mq_msgsize; /* maximum message size */
  24. long mq_curmsgs; /* number of messages currently queued */
  25. long __reserved[4]; /* ignored for input, zeroed for output */
  26. };
  27. /*
  28.  * SIGEV_THREAD implementation:
  29.  * SIGEV_THREAD must be implemented in user space. If SIGEV_THREAD is passed
  30.  * to mq_notify, then
  31.  * - sigev_signo must be the file descriptor of an AF_NETLINK socket. It's not
  32.  *   necessary that the socket is bound.
  33.  * - sigev_value.sival_ptr must point to a cookie that is NOTIFY_COOKIE_LEN
  34.  *   bytes long.
  35.  * If the notification is triggered, then the cookie is sent to the netlink
  36.  * socket. The last byte of the cookie is replaced with the NOTIFY_?? codes:
  37.  * NOTIFY_WOKENUP if the notification got triggered, NOTIFY_REMOVED if it was
  38.  * removed, either due to a close() on the message queue fd or due to a
  39.  * mq_notify() that removed the notification.
  40.  */
  41. #define NOTIFY_NONE 0
  42. #define NOTIFY_WOKENUP 1
  43. #define NOTIFY_REMOVED 2
  44. #define NOTIFY_COOKIE_LEN 32
  45. #endif