From ddff7ef4902d98730abdc3247f9626372796ceeb Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 26 Oct 2009 14:20:43 +0000 Subject: [PATCH] =?UTF-8?q?2009-10-26=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * support/include/tmacros.h: Add PRIdPriority_Control. Change PRIdrtems_task_priority to using PRIdPriority_Control. --- testsuites/ChangeLog | 5 +++++ testsuites/support/include/tmacros.h | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/testsuites/ChangeLog b/testsuites/ChangeLog index e1619536f4..080b508053 100644 --- a/testsuites/ChangeLog +++ b/testsuites/ChangeLog @@ -1,3 +1,8 @@ +2009-10-26 Ralf Corsépius + + * support/include/tmacros.h: Add PRIdPriority_Control. + Change PRIdrtems_task_priority to using PRIdPriority_Control. + 2009-10-26 Ralf Corsépius * support/include/tmacros.h: Add PRIdrtems_task_priority. diff --git a/testsuites/support/include/tmacros.h b/testsuites/support/include/tmacros.h index bdf589a019..a2e437183a 100644 --- a/testsuites/support/include/tmacros.h +++ b/testsuites/support/include/tmacros.h @@ -263,7 +263,10 @@ extern volatile uint32_t _Thread_Dispatch_disable_level; #define PRIxrtems_id PRIx32 #endif -#define PRIdrtems_task_priority PRId32 +#define PRIdPriority_Control PRId32 + +/* rtems_task_priority is a typedef to Priority_Control */ +#define PRIdrtems_task_priority PRIdPriority_Control #ifdef __cplusplus }