summaryrefslogtreecommitdiffstats
path: root/cpukit/score
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/score
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 'cpukit/score')
-rw-r--r--cpukit/score/src/threadget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/src/threadget.c b/cpukit/score/src/threadget.c
index d596cd5ac4..255f94c569 100644
--- a/cpukit/score/src/threadget.c
+++ b/cpukit/score/src/threadget.c
@@ -34,7 +34,7 @@ Thread_Control *_Thread_Get(
return _Thread_Executing;
}
- information = _Thread_Get_objects_information( id );
+ information = _Thread_Get_objects_information_by_id( id );
if ( information == NULL ) {
return NULL;
}