Skip to content

Commit

Permalink
Merge pull request nasa#1429 from jphickey/fix-1336-function-comments
Browse files Browse the repository at this point in the history
Fix nasa#1336, function block comments
  • Loading branch information
astrogeco authored May 4, 2021
2 parents 25926e4 + dc59e35 commit 2bc0cc7
Show file tree
Hide file tree
Showing 74 changed files with 6,703 additions and 4,654 deletions.
15 changes: 13 additions & 2 deletions modules/core_api/fsw/inc/cfe_es.h
Original file line number Diff line number Diff line change
Expand Up @@ -1449,15 +1449,26 @@ CFE_Status_t CFE_ES_GetMemPoolStats(CFE_ES_MemPoolStats_t *BufPtr, CFE_ES_MemHan

/*****************************************************************************/
/**
** \brief Function called by #CFE_ES_PerfLogEntry and #CFE_ES_PerfLogExit macros
** \brief Adds a new entry to the data buffer
**
** Function called by #CFE_ES_PerfLogEntry and #CFE_ES_PerfLogExit macros
**
** \par Description
** This function logs the entry and exit marker for the specified
** \c id. This function is used by the Software Performance Analysis
** tool (see section 5.15).
**
** \par Assumptions, External Events, and Notes:
** None
** This function implements a circular buffer using an array.
** DataStart points to first stored entry
** DataEnd points to next available entry
** if DataStart == DataEnd then the buffer is either empty or full
** depending on the value of the DataCount
**
** Time is stored as 2 32 bit integers, (TimerLower32, TimerUpper32):
** TimerLower32 is the curent value of the hardware timer register.
** TimerUpper32 is the number of times the timer has rolled over.
**
** \param[in] Marker Identifier of the specific event or marker.
** \param[in] EntryExit Used to specify Entry(0) or Exit(1)
Expand Down
2 changes: 1 addition & 1 deletion modules/core_api/fsw/inc/cfe_fs_core_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
** \brief Initializes the cFE core module API Library
**
** \par Description
** Initializes the cFE core module API Library
** Initialize the FS data structures before the cFE runs.
**
** \par Assumptions, External Events, and Notes:
** -# This function MUST be called before any module API's are called.
Expand Down
Loading

0 comments on commit 2bc0cc7

Please sign in to comment.