summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include
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/score/include
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/score/include')
-rw-r--r--cpukit/score/include/rtems/score/objectimpl.h2
-rw-r--r--cpukit/score/include/rtems/score/threadimpl.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/objectimpl.h b/cpukit/score/include/rtems/score/objectimpl.h
index 766080effb..f5beb3b971 100644
--- a/cpukit/score/include/rtems/score/objectimpl.h
+++ b/cpukit/score/include/rtems/score/objectimpl.h
@@ -549,7 +549,7 @@ Objects_Name_or_id_lookup_errors _Objects_Id_to_name (
* Interrupts are now disabled and must be restored using the specified lock
* context via _ISR_lock_ISR_enable() or _ISR_lock_Release_and_ISR_enable().
*/
-Objects_Control *_Objects_Get_local(
+Objects_Control *_Objects_Get(
Objects_Id id,
ISR_lock_Context *lock_context,
const Objects_Information *information
diff --git a/cpukit/score/include/rtems/score/threadimpl.h b/cpukit/score/include/rtems/score/threadimpl.h
index ce31457c2a..66b655d62d 100644
--- a/cpukit/score/include/rtems/score/threadimpl.h
+++ b/cpukit/score/include/rtems/score/threadimpl.h
@@ -580,7 +580,7 @@ RTEMS_INLINE_ROUTINE Objects_Information *_Thread_Get_objects_information(
/**
* @brief Gets a thread by its identifier.
*
- * @see _Objects_Get_local().
+ * @see _Objects_Get().
*/
Thread_Control *_Thread_Get_interrupt_disable(
Objects_Id id,