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

5
Last change on this file since beeeb59 was b76fa74, checked in by Sebastian Huber <sebastian.huber@…>, on 10/12/17 at 10:52:59

linkers: Update due to API changes

Update #3160.

  • Property mode set to 100644
File size: 2.6 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 = _Thread_Stack_Allocate, _Thread_Stack_Free, _Thread_Initialize, _Thread_Start
7trace = _Thread_Restart_other, _Thread_Restart_self, _Thread_Yield, _Thread_Set_life_protection
8trace = _Thread_Life_action_handler, _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 = _Thread_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_Life_action_handler, _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_Thread_Stack_Allocate = size_t, Thread_Control*, size_t
36_Thread_Stack_Free = void, Thread_Control*
37_Thread_Initialize = bool, Thread_Information *, Thread_Control*, const Scheduler_Control*, void*, size_t, bool, Priority_Control, bool, Thread_CPU_budget_algorithms, Thread_CPU_budget_algorithm_callout, uint32_t, Objects_Name
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_Life_action_handler = void, Thread_Control*, Thread_Action*, ISR_lock_Context*
44_Thread_Kill_zombies = void, void
45_Thread_Close = void, Thread_Control*, Thread_Control*, Thread_Close_context*
46_Thread_Clear_state = States_Control, Thread_Control*, States_Control
47_Thread_Set_state = States_Control, Thread_Control*, States_Control
48_Thread_Load_environment = void, Thread_Control*
49_Thread_Handler = void, void
50_Thread_Get = Thread_Control*, Objects_Id, ISR_lock_Context*
51_Thread_Priority_update = Thread_Control*, Thread_queue_Context*
52
Note: See TracBrowser for help on using the repository browser.