summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/score/objectdata.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/objectdata.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 'cpukit/include/rtems/score/objectdata.h')
-rw-r--r--cpukit/include/rtems/score/objectdata.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/include/rtems/score/objectdata.h b/cpukit/include/rtems/score/objectdata.h
index 952c150e1f..149498df9c 100644
--- a/cpukit/include/rtems/score/objectdata.h
+++ b/cpukit/include/rtems/score/objectdata.h
@@ -55,7 +55,7 @@ typedef struct {
typedef enum {
OBJECTS_INTERNAL_NO_CLASS = 0,
- /* Must be one, see __Thread_Get_objects_information() */
+ /* Must be one, see _Thread_Get_objects_information_by_id() */
OBJECTS_INTERNAL_THREADS = 1
} Objects_Internal_API;
@@ -66,7 +66,7 @@ typedef enum {
typedef enum {
OBJECTS_CLASSIC_NO_CLASS = 0,
- /* Must be one, see __Thread_Get_objects_information() */
+ /* Must be one, see _Thread_Get_objects_information_by_id() */
OBJECTS_RTEMS_TASKS = 1,
OBJECTS_RTEMS_TIMERS,
@@ -87,7 +87,7 @@ typedef enum {
typedef enum {
OBJECTS_POSIX_NO_CLASS = 0,
- /* Must be one, see __Thread_Get_objects_information() */
+ /* Must be one, see _Thread_Get_objects_information_by_id() */
OBJECTS_POSIX_THREADS = 1,
OBJECTS_POSIX_KEYS,