source: rtems-tools/linkers/rtems-score-thread.ini @ 9fcc207

Last change on this file since 9fcc207 was 9fcc207, checked in by Sebastian Huber <sebastian.huber@…>, on 09/18/20 at 18:30:50

linkers: Update due to API changes

  • Property mode set to 100644
File size: 2.2 KB
Line 
1;
2; RTEMS Supercore Thread Trace Configurations
3;
4[rtems-score-thread-all]
5trace = _Thread_Handler_initialization, _Thread_Create_idle, _Thread_Start_multitasking
6trace = _Stack_Allocate, _Stack_Free, _Thread_Initialize, _Thread_Start
7trace = _Thread_Restart_other, _Thread_Restart_self, _Thread_Yield, _Thread_Set_life_protection
8trace = _Thread_Kill_zombies, _Thread_Close
9trace = _Thread_Clear_state, _Thread_Set_state, _Thread_Load_environment
10trace = _Thread_Handler
11trace = _Thread_Get
12
13[rtems-score-thread-create-destory]
14traces = rtems-score-thread-create, rtems-score-thread-destroy
15
16[rtems-score-thread-create]
17trace = _Thread_Handler_initialization, _Thread_Create_idle
18trace = _Stack_Allocate, _Thread_Initialize, _Thread_Start
19trace = _Thread_Restart_other, _Thread_Restart_self, _Thread_Handler
20
21[rtems-score-thread-destroy]
22trace = _Thread_Kill_zombies, _Thread_Close
23
24[rtems-score-thread-activity]
25trace = _Thread_Restart_other, _Thread_Restart_self, _Thread_Yield, _Thread_Set_life_protection
26trace = _Thread_Clear_state,
27trace =  _Thread_Set_state, _Thread_Load_environment
28trace = _Thread_Get
29trace = _Thread_Priority_update
30
31[rtems-score-thread-signatures]
32_Thread_Handler_initialization = void, void
33_Thread_Create_idle = void, void
34_Thread_Start_multitasking = void, void
35_Stack_Allocate = void*, size_t
36_Stack_Free = void, void*
37_Thread_Initialize = bool, Thread_Information *, Thread_Control*, const Thread_Configuration *
38_Thread_Start = bool, Thread_Control*, const Thread_Entry_information*, ISR_lock_Context*
39_Thread_Restart_other = bool, Thread_Control*, const Thread_Entry_information*, ISR_lock_Context*
40_Thread_Restart_self = void, Thread_Control*, const Thread_Entry_information*, ISR_lock_Context*
41_Thread_Yield = void, Thread_Control*
42_Thread_Set_life_protection = Thread_Life_state, Thread_Life_state
43_Thread_Kill_zombies = void, void
44_Thread_Close = void, Thread_Control*, Thread_Control*, Thread_Close_context*
45_Thread_Clear_state = States_Control, Thread_Control*, States_Control
46_Thread_Set_state = States_Control, Thread_Control*, States_Control
47_Thread_Load_environment = void, Thread_Control*
48_Thread_Handler = void, void
49_Thread_Get = Thread_Control*, Objects_Id, ISR_lock_Context*
50_Thread_Priority_update = Thread_Control*, Thread_queue_Context*
51
Note: See TracBrowser for help on using the repository browser.