summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-05-20 15:04:16 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-05-20 16:17:00 +0200
commit582bb23c74b0617c60d7986afa756c90c28df739 (patch)
tree465a707db8cdcdd7c951f90d59ae374dc3e94ab0 /cpukit/rtems
parentscore: Delete unused _Objects_Get_isr_disable() (diff)
downloadrtems-582bb23c74b0617c60d7986afa756c90c28df739.tar.bz2
score: Rename _Objects_Get_local()
Rename _Objects_Get_local() into _Objects_Get(). Confusions with the previous _Objects_Get() function are avoided since the Objects_Locations parameter is gone.
Diffstat (limited to 'cpukit/rtems')
-rw-r--r--cpukit/rtems/include/rtems/rtems/barrierimpl.h2
-rw-r--r--cpukit/rtems/include/rtems/rtems/dpmemimpl.h2
-rw-r--r--cpukit/rtems/include/rtems/rtems/messageimpl.h2
-rw-r--r--cpukit/rtems/include/rtems/rtems/partimpl.h2
-rw-r--r--cpukit/rtems/include/rtems/rtems/ratemonimpl.h2
-rw-r--r--cpukit/rtems/include/rtems/rtems/semimpl.h2
-rw-r--r--cpukit/rtems/include/rtems/rtems/timerimpl.h2
7 files changed, 7 insertions, 7 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/barrierimpl.h b/cpukit/rtems/include/rtems/rtems/barrierimpl.h
index 99ce276943..39632fcd00 100644
--- a/cpukit/rtems/include/rtems/rtems/barrierimpl.h
+++ b/cpukit/rtems/include/rtems/rtems/barrierimpl.h
@@ -75,7 +75,7 @@ RTEMS_INLINE_ROUTINE Barrier_Control *_Barrier_Get(
)
{
return (Barrier_Control *)
- _Objects_Get_local( id, lock_context, &_Barrier_Information );
+ _Objects_Get( id, lock_context, &_Barrier_Information );
}
/**
diff --git a/cpukit/rtems/include/rtems/rtems/dpmemimpl.h b/cpukit/rtems/include/rtems/rtems/dpmemimpl.h
index df513787c7..52ac48c8dc 100644
--- a/cpukit/rtems/include/rtems/rtems/dpmemimpl.h
+++ b/cpukit/rtems/include/rtems/rtems/dpmemimpl.h
@@ -72,7 +72,7 @@ RTEMS_INLINE_ROUTINE Dual_ported_memory_Control *_Dual_ported_memory_Get(
)
{
return (Dual_ported_memory_Control *)
- _Objects_Get_local( id, lock_context, &_Dual_ported_memory_Information );
+ _Objects_Get( id, lock_context, &_Dual_ported_memory_Information );
}
/**@}*/
diff --git a/cpukit/rtems/include/rtems/rtems/messageimpl.h b/cpukit/rtems/include/rtems/rtems/messageimpl.h
index a40ace31ea..5a12b85846 100644
--- a/cpukit/rtems/include/rtems/rtems/messageimpl.h
+++ b/cpukit/rtems/include/rtems/rtems/messageimpl.h
@@ -107,7 +107,7 @@ _Message_queue_Get_interrupt_disable(
ISR_lock_Context *lock_context
)
{
- return (Message_queue_Control *) _Objects_Get_local(
+ return (Message_queue_Control *) _Objects_Get(
id,
lock_context,
&_Message_queue_Information
diff --git a/cpukit/rtems/include/rtems/rtems/partimpl.h b/cpukit/rtems/include/rtems/rtems/partimpl.h
index ea791559d1..13ee86b4c2 100644
--- a/cpukit/rtems/include/rtems/rtems/partimpl.h
+++ b/cpukit/rtems/include/rtems/rtems/partimpl.h
@@ -186,7 +186,7 @@ RTEMS_INLINE_ROUTINE Partition_Control *_Partition_Get(
ISR_lock_Context *lock_context
)
{
- return (Partition_Control *) _Objects_Get_local(
+ return (Partition_Control *) _Objects_Get(
id,
lock_context,
&_Partition_Information
diff --git a/cpukit/rtems/include/rtems/rtems/ratemonimpl.h b/cpukit/rtems/include/rtems/rtems/ratemonimpl.h
index ac0c2c5f2c..61ebb5a0df 100644
--- a/cpukit/rtems/include/rtems/rtems/ratemonimpl.h
+++ b/cpukit/rtems/include/rtems/rtems/ratemonimpl.h
@@ -90,7 +90,7 @@ RTEMS_INLINE_ROUTINE Rate_monotonic_Control *_Rate_monotonic_Get(
)
{
return (Rate_monotonic_Control *)
- _Objects_Get_local( id, lock_context, &_Rate_monotonic_Information );
+ _Objects_Get( id, lock_context, &_Rate_monotonic_Information );
}
void _Rate_monotonic_Timeout( Watchdog_Control *watchdog );
diff --git a/cpukit/rtems/include/rtems/rtems/semimpl.h b/cpukit/rtems/include/rtems/rtems/semimpl.h
index 7c26c24c27..670b4809ed 100644
--- a/cpukit/rtems/include/rtems/rtems/semimpl.h
+++ b/cpukit/rtems/include/rtems/rtems/semimpl.h
@@ -139,7 +139,7 @@ RTEMS_INLINE_ROUTINE Semaphore_Control *_Semaphore_Get_interrupt_disable(
ISR_lock_Context *lock_context
)
{
- return (Semaphore_Control *) _Objects_Get_local(
+ return (Semaphore_Control *) _Objects_Get(
id,
lock_context,
&_Semaphore_Information
diff --git a/cpukit/rtems/include/rtems/rtems/timerimpl.h b/cpukit/rtems/include/rtems/rtems/timerimpl.h
index 5605be768d..d8581bfcd8 100644
--- a/cpukit/rtems/include/rtems/rtems/timerimpl.h
+++ b/cpukit/rtems/include/rtems/rtems/timerimpl.h
@@ -87,7 +87,7 @@ RTEMS_INLINE_ROUTINE Timer_Control *_Timer_Get(
ISR_lock_Context *lock_context
)
{
- return (Timer_Control *) _Objects_Get_local(
+ return (Timer_Control *) _Objects_Get(
id,
lock_context,
&_Timer_Information