Adding in doxygen comment headers
Moving many of the functions from the old format of inline comments to the newer doxygen format. Change-Id: Ib0fe0d8627d7cd90219385a3ab627da8f9637d98 Signed-off-by: Dan Kalowsky <daniel.kalowsky@intel.com>
This commit is contained in:
parent
027ed5682b
commit
3a109b1f00
43 changed files with 372 additions and 372 deletions
|
@ -90,19 +90,20 @@ static ALWAYS_INLINE void thread_monitor_init(struct tcs *tcs)
|
|||
*
|
||||
* <options> is currently unused.
|
||||
*
|
||||
* @param pStackmem the pointer to aligned stack memory
|
||||
* @param stackSize the stack size in bytes
|
||||
* @param pEntry thread entry point routine
|
||||
* @param parameter1 first param to entry point
|
||||
* @param parameter2 second param to entry point
|
||||
* @param parameter3 third param to entry point
|
||||
* @param fiber priority, -1 for task
|
||||
* @param options is unused (saved for future expansion)
|
||||
*
|
||||
* @return N/A
|
||||
*/
|
||||
|
||||
void _new_thread(
|
||||
char *pStackMem, /* pointer to aligned stack memory */
|
||||
unsigned stackSize, /* stack size in bytes */
|
||||
_thread_entry_t pEntry, /* thread entry point routine */
|
||||
void *parameter1, /* first param to entry point */
|
||||
void *parameter2, /* second param to entry point */
|
||||
void *parameter3, /* third param to entry point */
|
||||
int priority, /* fiber priority, -1 for task */
|
||||
unsigned options /* unused, for expansion */
|
||||
)
|
||||
void _new_thread(char *pStackMem, unsigned stackSize, _thread_entry_t pEntry,
|
||||
void *parameter1, void *parameter2, void *parameter3,
|
||||
int priority, unsigned options)
|
||||
{
|
||||
char *stackEnd = pStackMem + stackSize;
|
||||
struct init_stack_frame *pInitCtx;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue