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

5
Last change on this file since eb1d8f4 was eb1d8f4, checked in by kaidoho <kho237115@…>, on 12/05/18 at 21:58:53

Fix wrong function signatures

  • Property mode set to 100644
File size: 2.0 KB
Line 
1;
2; RTEMS Supercore Objects Trace Configurations
3;
4[rtems-score-object-all]
5trace = _Objects_Do_initialize_information, _Objects_Extend_information
6trace = _Objects_Shrink_information, _Objects_Allocate_unprotected
7trace = _Objects_Allocate, _Objects_Free, _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_Namespace_remove, _Objects_Close, _Objects_Active_count
11
12[rtems-score-object-alloc]
13trace = _Objects_Do_initialize_information, _Objects_Allocate_unprotected
14trace = _Objects_Allocate, _Objects_Free, _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_Do_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_Id, ISR_lock_Context *, const Objects_Information*
29_Objects_Get_no_protection = Objects_Control*, Objects_Id, const Objects_Information*
30_Objects_Get_next = Objects_Control*, Objects_Id, const Objects_Information*, Objects_Id*
31_Objects_Get_information = Objects_Information*, Objects_APIs, uint16_t
32_Objects_Get_information_id = Objects_Information*, Objects_Id
33_Objects_Get_name_as_string = char*, Objects_Id, size_t, char*
34_Objects_Set_name = bool, const Objects_Information*, Objects_Control*, const char*
35_Objects_Namespace_remove = void, Objects_Information*, Objects_Control*
36_Objects_Close = void, const Objects_Information*, Objects_Control*
37_Objects_Active_count = Objects_Maximum, const Objects_Information*
Note: See TracBrowser for help on using the repository browser.