2009-10-26 Ralf Corsépius <ralf.corsepius@rtems.org>

* support/include/tmacros.h: Add PRItime_t.
This commit is contained in:
Ralf Corsepius
2009-10-26 09:06:39 +00:00
parent 178a039c48
commit b701261ccf
2 changed files with 10 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
2009-10-26 Ralf Corsépius <ralf.corsepius@rtems.org>
* support/include/tmacros.h: Add PRItime_t.
2009-10-26 Ralf Corsépius <ralf.corsepius@rtems.org>
* support/include/tmacros.h (print_time): Use PRIu32 instead of %d.

View File

@@ -251,6 +251,12 @@ extern volatile uint32_t _Thread_Dispatch_disable_level;
rtems_test_exit(0); \
}
/*
* HACK: PRItime_t: inttypes.h-style macro to print a time_t.
* The implementation below presumes time_t to be a "long".
*/
#define PRItime_t "ld"
#ifdef __cplusplus
}
#endif