summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/score/threadmp.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-01-29 18:45:05 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-02-01 06:22:19 +0100
commit76eec484e599e36f7c03a59b630369be17f6f935 (patch)
treef628278d0cb3558acf216fb3cb309c041ebd59a9 /cpukit/include/rtems/score/threadmp.h
parentbsps/aarch64: Add missing include (diff)
downloadrtems-76eec484e599e36f7c03a59b630369be17f6f935.tar.bz2
score: Rename _Thread_Get_objects_information()
Rename _Thread_Get_objects_information() in _Thread_Get_objects_information_by_id() to emphasize that this thread method uses an object identifier and not a thread control.
Diffstat (limited to '')
-rw-r--r--cpukit/include/rtems/score/threadmp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/include/rtems/score/threadmp.h b/cpukit/include/rtems/score/threadmp.h
index ae973ef0d8..6cc68e6320 100644
--- a/cpukit/include/rtems/score/threadmp.h
+++ b/cpukit/include/rtems/score/threadmp.h
@@ -117,7 +117,7 @@ RTEMS_INLINE_ROUTINE bool _Thread_MP_Is_remote( Objects_Id id )
{
Objects_Information *information;
- information = _Thread_Get_objects_information( id );
+ information = _Thread_Get_objects_information_by_id( id );
if ( information == NULL ) {
return false;
}