summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-09-18 20:30:50 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-09-18 20:34:59 +0200
commit9fcc20789367ef476eb9ffbc6e2f9fabf686e10f (patch)
tree3beedaba4d050168dd9847ae0fefad28b6824b5b
parentlinker/exeinfo: Optionally output full flags when listing object files (diff)
downloadrtems-tools-9fcc20789367ef476eb9ffbc6e2f9fabf686e10f.tar.bz2
linkers: Update due to API changes
-rw-r--r--linkers/rtems-score-object.ini17
-rw-r--r--linkers/rtems-score-thread.ini8
2 files changed, 11 insertions, 14 deletions
diff --git a/linkers/rtems-score-object.ini b/linkers/rtems-score-object.ini
index 0a4afe5..521398e 100644
--- a/linkers/rtems-score-object.ini
+++ b/linkers/rtems-score-object.ini
@@ -2,16 +2,16 @@
; RTEMS Supercore Objects Trace Configurations
;
[rtems-score-object-all]
-trace = _Objects_Do_initialize_information, _Objects_Extend_information
-trace = _Objects_Shrink_information, _Objects_Allocate_unprotected
-trace = _Objects_Allocate, _Objects_Free, _Objects_Get
+trace = _Objects_Initialize_information, _Objects_Extend_information
+trace = _Objects_Shrink_information
+trace = _Objects_Allocate, _Objects_Get
trace = _Objects_Get_no_protection, _Objects_Get_next, _Objects_Get_information
trace = _Objects_Get_information_id, _Objects_Get_name_as_string, _Objects_Set_name
-trace = _Objects_Namespace_remove, _Objects_Close, _Objects_Active_count
+trace = _Objects_Close, _Objects_Active_count
[rtems-score-object-alloc]
-trace = _Objects_Do_initialize_information, _Objects_Allocate_unprotected
-trace = _Objects_Allocate, _Objects_Free, _Objects_Close
+trace = _Objects_Initialize_information
+trace = _Objects_Allocate, _Objects_Close
[rtems-score-object-get]
trace = _Objects_Get, _Objects_Get_no_protection
@@ -19,12 +19,10 @@ trace = _Objects_Get_next, _Objects_Get_information, _Objects_Get_information_id
trace = _Objects_Get_name_as_string
[rtems-score-object-signatures]
-_Objects_Do_initialize_information = void, Objects_Information*, Objects_APIs, uint16_t, uint32_t, uint16_t, bool, uint32_t
+_Objects_Initialize_information = void, Objects_Information*
_Objects_Extend_information = Objects_Maximum, Objects_Information*
_Objects_Shrink_information = void, Objects_Information*
-_Objects_Allocate_unprotected = Objects_Control*, Objects_Information*
_Objects_Allocate = Objects_Control*, Objects_Information*
-_Objects_Free = void, Objects_Information*, Objects_Control*
_Objects_Get = Objects_Control*, Objects_Id, ISR_lock_Context *, const Objects_Information*
_Objects_Get_no_protection = Objects_Control*, Objects_Id, const Objects_Information*
_Objects_Get_next = Objects_Control*, Objects_Id, const Objects_Information*, Objects_Id*
@@ -32,6 +30,5 @@ _Objects_Get_information = Objects_Information*, Objects_APIs, uint16_t
_Objects_Get_information_id = Objects_Information*, Objects_Id
_Objects_Get_name_as_string = char*, Objects_Id, size_t, char*
_Objects_Set_name = bool, const Objects_Information*, Objects_Control*, const char*
-_Objects_Namespace_remove = void, Objects_Information*, Objects_Control*
_Objects_Close = void, const Objects_Information*, Objects_Control*
_Objects_Active_count = Objects_Maximum, const Objects_Information*
diff --git a/linkers/rtems-score-thread.ini b/linkers/rtems-score-thread.ini
index ce82b5d..3aed2f1 100644
--- a/linkers/rtems-score-thread.ini
+++ b/linkers/rtems-score-thread.ini
@@ -3,7 +3,7 @@
;
[rtems-score-thread-all]
trace = _Thread_Handler_initialization, _Thread_Create_idle, _Thread_Start_multitasking
-trace = _Thread_Stack_Allocate, _Thread_Stack_Free, _Thread_Initialize, _Thread_Start
+trace = _Stack_Allocate, _Stack_Free, _Thread_Initialize, _Thread_Start
trace = _Thread_Restart_other, _Thread_Restart_self, _Thread_Yield, _Thread_Set_life_protection
trace = _Thread_Kill_zombies, _Thread_Close
trace = _Thread_Clear_state, _Thread_Set_state, _Thread_Load_environment
@@ -15,7 +15,7 @@ traces = rtems-score-thread-create, rtems-score-thread-destroy
[rtems-score-thread-create]
trace = _Thread_Handler_initialization, _Thread_Create_idle
-trace = _Thread_Stack_Allocate, _Thread_Initialize, _Thread_Start
+trace = _Stack_Allocate, _Thread_Initialize, _Thread_Start
trace = _Thread_Restart_other, _Thread_Restart_self, _Thread_Handler
[rtems-score-thread-destroy]
@@ -32,8 +32,8 @@ trace = _Thread_Priority_update
_Thread_Handler_initialization = void, void
_Thread_Create_idle = void, void
_Thread_Start_multitasking = void, void
-_Thread_Stack_Allocate = size_t, Thread_Control*, size_t
-_Thread_Stack_Free = void, Thread_Control*
+_Stack_Allocate = void*, size_t
+_Stack_Free = void, void*
_Thread_Initialize = bool, Thread_Information *, Thread_Control*, const Thread_Configuration *
_Thread_Start = bool, Thread_Control*, const Thread_Entry_information*, ISR_lock_Context*
_Thread_Restart_other = bool, Thread_Control*, const Thread_Entry_information*, ISR_lock_Context*