From 59e7209fb3181ab48c4f63da8a8deda8872157f7 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 16 Nov 2018 07:06:12 +0100 Subject: score: Remove support for RTEMS_USE_16_BIT_OBJECT The RTEMS_USE_16_BIT_OBJECT define is not set by an RTEMS port. Remove support for 16-bit object identifiers. If someone really wants to use RTEMS on a 16-bit target, then it is better to use self-contained objects instead of playing around with object identifier optimizations. Update #3603. --- cpukit/include/rtems/inttypes.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'cpukit/include/rtems/inttypes.h') diff --git a/cpukit/include/rtems/inttypes.h b/cpukit/include/rtems/inttypes.h index a8e725dcbf..4e6e98f507 100644 --- a/cpukit/include/rtems/inttypes.h +++ b/cpukit/include/rtems/inttypes.h @@ -97,11 +97,7 @@ extern "C" { * certain system types on different targets. */ -#if defined(RTEMS_USE_16_BIT_OBJECT) -#define PRIxrtems_id PRIx16 -#else #define PRIxrtems_id PRIx32 -#endif /* c.f. cpukit/score/include/rtems/score/priority.h */ #define PRIdPriority_Control PRIu64 -- cgit v1.2.3