summaryrefslogtreecommitdiff
path: root/PACE/pace/posix/mqueue.h
diff options
context:
space:
mode:
Diffstat (limited to 'PACE/pace/posix/mqueue.h')
-rw-r--r--PACE/pace/posix/mqueue.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/PACE/pace/posix/mqueue.h b/PACE/pace/posix/mqueue.h
deleted file mode 100644
index c85500b4d01..00000000000
--- a/PACE/pace/posix/mqueue.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/* $Id$
-
- * ============================================================================
- *
- * = LIBRARY
- * pace
- *
- * = FILENAME
- * pace/posix/mqueue.h
- *
- * = AUTHOR
- * Luther Baker
- *
- * ============================================================================ */
-
-#ifndef PACE_MQUEUE_H_POSIX
-#define PACE_MQUEUE_H_POSIX
-
-#if PACE_LINUX
-# include "pace/emulation/mqueue.h"
-#else
-# include <mqueue.h>
-#endif /* PACE_LINUX */
-
-#include "pace/signal.h"
-
-#if defined (PACE_HAS_CPLUSPLUS)
-extern "C" {
-#endif /* PACE_HAS_CPLUSPLUS */
-
-#ifndef PACE_MQD_T
-#define PACE_MQD_T
-# if PACE_LINUX
- typedef pace_emu_mqd_t pace_mqd_t;
-# else
- typedef mqd_t pace_mqd_t;
-# endif /* PACE_LINUX */
-#endif /* PACE_MQD_T */
-
-#ifndef PACE_MQ_ATTR
-#define PACE_MQ_ATTR
-# if PACE_LINUX
- typedef struct pace_emu_mq_attr pace_mq_attr;
-# else
- typedef struct mq_attr pace_mq_attr;
-# endif /* PACE_LINUX */
-#endif /* PACE_MQ_ATTR */
-
-#if defined (PACE_HAS_CPLUSPLUS)
-}
-#endif /* PACE_HAS_CPLUSPLUS */
-
-#endif /* PACE_MQUEUE_H_POSIX */