From: Jan Kiszka <jan.kiszka@domain.hid>
To: Philippe Gerum <rpm@xenomai.org>
Cc: xenomai-core <xenomai@xenomai.org>
Subject: [Xenomai-core] [PATCH] posix: Fix HAVE_MQUEUE_H check
Date: Tue, 14 Apr 2009 15:58:20 +0200 [thread overview]
Message-ID: <49E4967C.6010909@domain.hid> (raw)
Please pull from git://git.xenomai.org/xenomai-jki.git for-upstream
------>
Signed-off-by: Jan Kiszka <jan.kiszka@domain.hid>
---
include/posix/mqueue.h | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/posix/mqueue.h b/include/posix/mqueue.h
index b5870f9..f4f40c8 100644
--- a/include/posix/mqueue.h
+++ b/include/posix/mqueue.h
@@ -40,7 +40,7 @@
#endif /* !(__KERNEL__ || __XENO_SIM__) */
-#if defined(__KERNEL__) || defined(__XENO_SIM__) || !HAVE_MQUEUE
+#if defined(__KERNEL__) || defined(__XENO_SIM__) || !defined(HAVE_MQUEUE_H)
#ifndef MQ_PRIO_MAX
#define MQ_PRIO_MAX 32768
@@ -104,7 +104,7 @@ int mq_unlink(const char *name);
}
#endif
-#else /* !(__KERNEL__ || __XENO_SIM__ || !HAVE_MQUEUE) */
+#else /* !(__KERNEL__ || __XENO_SIM__ || !HAVE_MQUEUE_H) */
#include_next <mqueue.h>
@@ -155,6 +155,6 @@ int __real_mq_notify(mqd_t mqdes, const struct sigevent *notification);
}
#endif
-#endif /* !(__KERNEL__ || __XENO_SIM__ || !HAVE_MQUEUE) */
+#endif /* !(__KERNEL__ || __XENO_SIM__ || !HAVE_MQUEUE_H) */
#endif /* _XENO_POSIX_MQUEUE_H */
reply other threads:[~2009-04-14 13:58 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=49E4967C.6010909@domain.hid \
--to=jan.kiszka@domain.hid \
--cc=rpm@xenomai.org \
--cc=xenomai@xenomai.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.