summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/regiongetinfo.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-08 06:56:46 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-12 07:36:19 +0200
commit1142f5593a5b6ab65d47bafb749e0709c7d2daa2 (patch)
tree44d5b886a880307bd6f38550a7275071f38965a7 /cpukit/rtems/src/regiongetinfo.c
parentscore: Simplify _Objects_Get_no_protection() (diff)
downloadrtems-1142f5593a5b6ab65d47bafb749e0709c7d2daa2.tar.bz2
rtems: Add and use _Region_Get_and_lock()
Get region and lock allocator in _Region_Get_and_lock() in case the region exists and unlock it in _Region_Unlock().
Diffstat (limited to 'cpukit/rtems/src/regiongetinfo.c')
-rw-r--r--cpukit/rtems/src/regiongetinfo.c20
1 files changed, 8 insertions, 12 deletions
diff --git a/cpukit/rtems/src/regiongetinfo.c b/cpukit/rtems/src/regiongetinfo.c
index 2ab3d40e30..8226dca59a 100644
--- a/cpukit/rtems/src/regiongetinfo.c
+++ b/cpukit/rtems/src/regiongetinfo.c
@@ -25,24 +25,20 @@ rtems_status_code rtems_region_get_information(
Heap_Information_block *the_info
)
{
- rtems_status_code status;
- Region_Control *the_region;
+ Region_Control *the_region;
if ( the_info == NULL ) {
return RTEMS_INVALID_ADDRESS;
}
- _RTEMS_Lock_allocator();
+ the_region = _Region_Get_and_lock( id );
- the_region = _Region_Get( id );
-
- if ( the_region != NULL ) {
- _Heap_Get_information( &the_region->Memory, the_info );
- status = RTEMS_SUCCESSFUL;
- } else {
- status = RTEMS_INVALID_ID;
+ if ( the_region == NULL ) {
+ return RTEMS_INVALID_ID;
}
- _RTEMS_Unlock_allocator();
- return status;
+ _Heap_Get_information( &the_region->Memory, the_info );
+
+ _Region_Unlock( the_region );
+ return RTEMS_SUCCESSFUL;
}