Update submodule; Improve some comments

This commit is contained in:
Gregory Nutt 2016-02-05 10:23:39 -06:00
parent 0984104a9a
commit 50cf53914c
2 changed files with 3 additions and 3 deletions

2
arch

@ -1 +1 @@
Subproject commit e07f315ee55ee760cc5030f09c986329ed189fdc Subproject commit e15b5dec6a20cce69ce6bfc18c808b92638a7bd3

View File

@ -75,7 +75,7 @@ enum os_initstate_e
OSINIT_HARDWARE = 3, /* MCU-specific hardware is initialized. Hardware OSINIT_HARDWARE = 3, /* MCU-specific hardware is initialized. Hardware
* resources such as timers and device drivers are * resources such as timers and device drivers are
* now avaiable. Low-level OS services sufficient * now avaiable. Low-level OS services sufficient
* to support the hardware are also avaialable but * to support the hardware are also available but
* the OS has not yet completed its full * the OS has not yet completed its full
* initialization. */ * initialization. */
OSINIT_OSREADY = 4 /* The OS is fully initialized and multi-tasking is OSINIT_OSREADY = 4 /* The OS is fully initialized and multi-tasking is
@ -96,7 +96,7 @@ extern "C"
/* This is the current initialization state. The level of initialization /* This is the current initialization state. The level of initialization
* is only important early in the start-up sequence when certain OS or * is only important early in the start-up sequence when certain OS or
* hardware resources may not yet be available to the kernel logic. * hardware resources may not yet be available to the OS-internal logic.
*/ */
EXTERN uint8_t g_os_initstate; /* See enum os_initstate_e */ EXTERN uint8_t g_os_initstate; /* See enum os_initstate_e */