source: rtems-tools/linkers/rtems-score-object.ini @ 7d3350d

5
Last change on this file since 7d3350d was 5025439, checked in by Chris Johns <chrisj@…>, on 09/21/14 at 04:24:37

rtems-tld: Add config options, fix void args, and SCore traces.

  • Property mode set to 100644
File size: 2.2 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, _Objects_Allocate_unprotected
7trace = _Objects_Allocate, _Objects_Free, _Objects_Get, _Objects_Get_isr_disable
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_Namespace_remove, _Objects_Close, _Objects_Active_count
11
12[rtems-score-object-alloc]
13trace = _Objects_Initialize_information, _Objects_Allocate_unprotected
14trace = _Objects_Allocate, _Objects_Free, _Objects_Close
15
16[rtems-score-object-get]
17trace = _Objects_Get, _Objects_Get_isr_disable, _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*, Objects_APIs, uint16_t, uint32_t, uint16_t, bool, uint32_t
23_Objects_Extend_information = void, Objects_Information*
24_Objects_Shrink_information = void, Objects_Information*
25_Objects_Allocate_unprotected = Objects_Control*, Objects_Information*
26_Objects_Allocate = Objects_Control*, Objects_Information*
27_Objects_Free = void, Objects_Information*, Objects_Control*
28_Objects_Get = Objects_Control*, Objects_Information*, Objects_Id, Objects_Locations*
29_Objects_Get_isr_disable = Objects_Control*, Objects_Information*, Objects_Id, Objects_Locations*, ISR_Level*
30_Objects_Get_no_protection = Objects_Control*, Objects_Information*, Objects_Id, Objects_Locations*
31_Objects_Get_next = Objects_Control*, Objects_Information*, Objects_Id, Objects_Locations*, Objects_Id*
32_Objects_Get_information = Objects_Information*, Objects_APIs, uint16_t
33_Objects_Get_information_id = Objects_Information*, Objects_Id
34_Objects_Get_name_as_string = char*, Objects_Id, size_t, char*
35_Objects_Set_name = bool, Objects_Information*, Objects_Control*, const char*
36_Objects_Namespace_remove = void, Objects_Information*, Objects_Control*
37_Objects_Close = void, Objects_Information*, Objects_Control*
38_Objects_Active_count = Objects_Maximum, const Objects_Information*
Note: See TracBrowser for help on using the repository browser.