Skip to content

Commit

Permalink
HOTFIX 20200902, hide the call graph on utility functions
Browse files Browse the repository at this point in the history
  • Loading branch information
jphickey committed Sep 8, 2020
1 parent 00d1abd commit d31e802
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/os/inc/osapi-os-core.h
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ void OS_ApplicationExit(int32 Status);
* @param[in] object_id The object ID
* @returns integer value representation of object ID
*
* @hidecallgraph
* @hidecallergraph
*/
static inline unsigned long OS_ObjectIdToInteger(osal_id_t object_id)
Expand All @@ -334,6 +335,7 @@ static inline unsigned long OS_ObjectIdToInteger(osal_id_t object_id)
* @param[in] value The integer representation of an OSAL ID
* @returns The ID value converted to an osal_id_t
*
* @hidecallgraph
* @hidecallergraph
*/
static inline osal_id_t OS_ObjectIdFromInteger(unsigned long value)
Expand All @@ -354,6 +356,7 @@ static inline osal_id_t OS_ObjectIdFromInteger(unsigned long value)
* @param[in] object_id2 The second object ID
* @returns true if the object IDs are equal
*
* @hidecallgraph
* @hidecallergraph
*/
static inline bool OS_ObjectIdEqual(osal_id_t object_id1, osal_id_t object_id2)
Expand All @@ -374,6 +377,7 @@ static inline bool OS_ObjectIdEqual(osal_id_t object_id1, osal_id_t object_id2)
*
* @param[in] object_id The first object ID
*
* @hidecallgraph
* @hidecallergraph
*/
static inline bool OS_ObjectIdDefined(osal_id_t object_id)
Expand Down

0 comments on commit d31e802

Please sign in to comment.