From 9c9c6a93b1a17ad12f61b41e1d5f4616871cdba7 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 21 Nov 2018 17:30:52 +0100 Subject: score: Remove Objects_Information::is_string Use Objects_Information::name_length to store this information. Update #3621. --- cpukit/rtems/src/region.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'cpukit/rtems/src/region.c') diff --git a/cpukit/rtems/src/region.c b/cpukit/rtems/src/region.c index 892c680f15..4fbce63160 100644 --- a/cpukit/rtems/src/region.c +++ b/cpukit/rtems/src/region.c @@ -47,8 +47,7 @@ static void _Region_Manager_initialization(void) Configuration_RTEMS_API.maximum_regions, /* maximum objects of this class */ sizeof( Region_Control ), /* size of this object's control block */ - false, /* true if the name is a string */ - RTEMS_MAXIMUM_NAME_LENGTH, /* maximum length of an object name */ + OBJECTS_NO_STRING_NAME, /* maximum length of an object name */ NULL /* Proxy extraction support callout */ ); } -- cgit v1.2.3