summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-30 13:20:34 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-30 13:20:34 +0000
commit9ea82a5f69316d6a6efad149c29afddb3de0f675 (patch)
tree286632f204e3af593e1b9440be8afede289da078 /testsuites
parent2009-10-30 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-9ea82a5f69316d6a6efad149c29afddb3de0f675.tar.bz2
Add PRIxrtems_task_priority, PRIxrtems_task_priority, PRIxrtems_signal_set.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/support/include/tmacros.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuites/support/include/tmacros.h b/testsuites/support/include/tmacros.h
index 28793a3579..f4ea657c31 100644
--- a/testsuites/support/include/tmacros.h
+++ b/testsuites/support/include/tmacros.h
@@ -266,8 +266,10 @@ extern volatile uint32_t _Thread_Dispatch_disable_level;
/* c.f. cpukit/score/include/rtems/score/priority.h */
#define PRIdPriority_Control PRId32
+#define PRIxPriority_Control PRIx32
/* rtems_task_priority is a typedef to Priority_Control */
#define PRIdrtems_task_priority PRIdPriority_Control
+#define PRIxrtems_task_priority PRIxPriority_Control
/* c.f. cpukit/score/include/rtems/score/watchdog.h */
#define PRIdWatchdog_Interval PRIu32
@@ -286,6 +288,9 @@ extern volatile uint32_t _Thread_Dispatch_disable_level;
/* HACK: There is no portable way to print pthread_t's */
#define PRIxpthread_t PRIx32
+/* rtems_signal_set is a typedef to uint32_t */
+#define PRIxrtems_signal_set PRIx32
+
#ifdef __cplusplus
}
#endif