nanokernel : clean up comments

Moving comments back to the 70 character limit.  Also moving some of the
comments up to be included in the doxygen headers instead of inline.

Change-Id: I56a6015e5fd6da81e9a06701217e62e899b6aa62
Signed-off-by: Dan Kalowsky <daniel.kalowsky@intel.com>
This commit is contained in:
Dan Kalowsky 2016-02-10 16:38:50 -08:00 committed by Gerrit Code Review
commit 21a99e639d
9 changed files with 67 additions and 54 deletions

View file

@ -140,17 +140,18 @@ extern void _main(void);
static void nano_init(struct tcs *dummyOutContext)
{
/*
* Initialize the current execution thread to permit a level of debugging
* output if an exception should happen during nanokernel initialization.
* However, don't waste effort initializing the fields of the dummy thread
* beyond those needed to identify it as a dummy thread.
* Initialize the current execution thread to permit a level of
* debugging output if an exception should happen during nanokernel
* initialization.
* However, don't waste effort initializing the fields of the dummy
* thread beyond those needed to identify it as a dummy thread.
*/
_nanokernel.current = dummyOutContext;
/*
* Do not insert dummy execution context in the list of fibers, so that it
* does not get scheduled back in once context-switched out.
* Do not insert dummy execution context in the list of fibers, so that
* it does not get scheduled back in once context-switched out.
*/
dummyOutContext->link = (struct tcs *)NULL;
@ -185,7 +186,9 @@ static void nano_init(struct tcs *dummyOutContext)
0 /* options */
);
/* indicate that failure of this task may be fatal to the entire system */
/* indicate that failure of this task may be fatal to the entire
* system
*/
_nanokernel.task->flags |= ESSENTIAL;