Fix typos

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@101 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2007-03-19 21:40:52 +00:00
parent 62bd263bb8
commit 5d8f645892
7 changed files with 18 additions and 15 deletions

View File

@ -69,7 +69,7 @@
* processor, etc. This value is retained only for debug * processor, etc. This value is retained only for debug
* purposes. * purposes.
* stack_alloc_ptr: Pointer to allocated stack * stack_alloc_ptr: Pointer to allocated stack
* adj_stack_ptr: Adjusted StatckAllocPtr for HW. The * adj_stack_ptr: Adjusted stack_alloc_ptr for HW. The
* initial value of the stack pointer. * initial value of the stack pointer.
* *
* Inputs: * Inputs:

View File

@ -69,7 +69,7 @@
* processor, etc. This value is retained only for debug * processor, etc. This value is retained only for debug
* purposes. * purposes.
* stack_alloc_ptr: Pointer to allocated stack * stack_alloc_ptr: Pointer to allocated stack
* adj_stack_ptr: Adjusted StatckAllocPtr for HW. The * adj_stack_ptr: Adjusted stack_alloc_ptr for HW. The
* initial value of the stack pointer. * initial value of the stack pointer.
* *
* Inputs: * Inputs:

View File

@ -69,7 +69,7 @@
* processor, etc. This value is retained only for debug * processor, etc. This value is retained only for debug
* purposes. * purposes.
* stack_alloc_ptr: Pointer to allocated stack * stack_alloc_ptr: Pointer to allocated stack
* adj_stack_ptr: Adjusted StatckAllocPtr for HW. The * adj_stack_ptr: Adjusted stack_alloc_ptr for HW. The
* initial value of the stack pointer. * initial value of the stack pointer.
* *
* Inputs: * Inputs:

View File

@ -69,7 +69,7 @@
* processor, etc. This value is retained only for debug * processor, etc. This value is retained only for debug
* purposes. * purposes.
* stack_alloc_ptr: Pointer to allocated stack * stack_alloc_ptr: Pointer to allocated stack
* adj_stack_ptr: Adjusted StatckAllocPtr for HW. The * adj_stack_ptr: Adjusted stack_alloc_ptr for HW. The
* initial value of the stack pointer. * initial value of the stack pointer.
* *
* Inputs: * Inputs:

View File

@ -71,7 +71,7 @@
* processor, etc. This value is retained only for debug * processor, etc. This value is retained only for debug
* purposes. * purposes.
* stack_alloc_ptr: Pointer to allocated stack * stack_alloc_ptr: Pointer to allocated stack
* adj_stack_ptr: Adjusted StatckAllocPtr for HW. The * adj_stack_ptr: Adjusted stack_alloc_ptr for HW. The
* initial value of the stack pointer. * initial value of the stack pointer.
* *
* Inputs: * Inputs:

View File

@ -72,7 +72,7 @@
* processor, etc. This value is retained only for debug * processor, etc. This value is retained only for debug
* purposes. * purposes.
* stack_alloc_ptr: Pointer to allocated stack * stack_alloc_ptr: Pointer to allocated stack
* adj_stack_ptr: Adjusted StatckAllocPtr for HW. The * adj_stack_ptr: Adjusted stack_alloc_ptr for HW. The
* initial value of the stack pointer. * initial value of the stack pointer.
* *
* Inputs: * Inputs:

View File

@ -141,13 +141,14 @@ EXTERN void up_initial_state(FAR _TCB *tcb);
* processor, etc. This value is retained only for debug * processor, etc. This value is retained only for debug
* purposes. * purposes.
* stack_alloc_ptr: Pointer to allocated stack * stack_alloc_ptr: Pointer to allocated stack
* adj_stack_ptr: Adjusted StatckAllocPtr for HW. The * adj_stack_ptr: Adjusted stack_alloc_ptr for HW. The
* initial value of the stack pointer. * initial value of the stack pointer.
* *
* Inputs: * Inputs:
* tcb: The TCB of new task * tcb: The TCB of new task
* stack_size: The requested stack size. At least this much * stack_size: The requested stack size. At least this much
* must be allocated. * must be allocated.
*
************************************************************/ ************************************************************/
#ifndef CONFIG_CUSTOM_STACK #ifndef CONFIG_CUSTOM_STACK
@ -166,7 +167,7 @@ EXTERN STATUS up_create_stack(FAR _TCB *tcb, size_t stack_size);
* processor, etc. This value is retained only for debug * processor, etc. This value is retained only for debug
* purposes. * purposes.
* stack_alloc_ptr: Pointer to allocated stack * stack_alloc_ptr: Pointer to allocated stack
* adj_stack_ptr: Adjusted StatckAllocPtr for HW. The * adj_stack_ptr: Adjusted stack_alloc_ptr for HW. The
* initial value of the stack pointer. * initial value of the stack pointer.
* *
* Inputs: * Inputs:
@ -244,14 +245,16 @@ EXTERN void up_block_task(FAR _TCB *tcb, tstate_t task_state);
* Name: up_release_pending * Name: up_release_pending
* *
* Description: * Description:
* Release and ready-to-run tasks that have * When tasks become ready-to-run but cannot run because
* collected in the pending task list. This can call a * pre-emption is disabled, they are placed into a pending
* context switch if a new task is placed at the head of * task list. This function releases and makes ready-to-run
* the ready to run list. * all of the tasks that have collected in the pending task
* list. This can cause a context switch if a new task is
* placed at the head of the ready to run list.
* *
* This function is called only from the NuttX scheduling * This function is called only from the NuttX scheduling
* logic. Interrupts will always be disabled when this * logic when pre-emptioni is re-enabled. Interrupts will
* function is called. * always be disabled when this function is called.
* *
************************************************************/ ************************************************************/
@ -299,7 +302,7 @@ EXTERN void up_reprioritize_rtr(FAR _TCB *tcb, ubyte priority);
/* Prototype is in unistd.h */ /* Prototype is in unistd.h */
/************************************************************ /************************************************************
* Name: ip_assert and up_assert_code * Name: up_assert and up_assert_code
* *
* Description: * Description:
* Assertions may be handled in an architecture-specific * Assertions may be handled in an architecture-specific