source: rtems-tools/linkers/rtems-score-object.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: 1.7 KB
Line 
1;
2; RTEMS Supercore Objects Trace Configurations
3;
4[rtems-score-object-all]
5trace = _Objects_Initialize_information, _Objects_Extend_information
6trace = _Objects_Shrink_information
7trace = _Objects_Allocate, _Objects_Get
8trace = _Objects_Get_no_protection, _Objects_Get_next, _Objects_Get_information
9trace = _Objects_Get_information_id, _Objects_Get_name_as_string, _Objects_Set_name
10trace = _Objects_Close, _Objects_Active_count
11
12[rtems-score-object-alloc]
13trace = _Objects_Initialize_information
14trace = _Objects_Allocate, _Objects_Close
15
16[rtems-score-object-get]
17trace = _Objects_Get, _Objects_Get_no_protection
18trace = _Objects_Get_next, _Objects_Get_information, _Objects_Get_information_id
19trace = _Objects_Get_name_as_string
20
21[rtems-score-object-signatures]
22_Objects_Initialize_information = void, Objects_Information*
23_Objects_Extend_information = Objects_Maximum, Objects_Information*
24_Objects_Shrink_information = void, Objects_Information*
25_Objects_Allocate = Objects_Control*, Objects_Information*
26_Objects_Get = Objects_Control*, Objects_Id, ISR_lock_Context *, const Objects_Information*
27_Objects_Get_no_protection = Objects_Control*, Objects_Id, const Objects_Information*
28_Objects_Get_next = Objects_Control*, Objects_Id, const Objects_Information*, Objects_Id*
29_Objects_Get_information = Objects_Information*, Objects_APIs, uint16_t
30_Objects_Get_information_id = Objects_Information*, Objects_Id
31_Objects_Get_name_as_string = char*, Objects_Id, size_t, char*
32_Objects_Set_name = bool, const Objects_Information*, Objects_Control*, const char*
33_Objects_Close = void, const Objects_Information*, Objects_Control*
34_Objects_Active_count = Objects_Maximum, const Objects_Information*
Note: See TracBrowser for help on using the repository browser.