Revise misleading 'channel' references in microkernel server code

There is no need to refer to the server's command stack as a 'channel'.

Change-Id: I5c0fd599ba25478f1c4a9e96c015746b205df469
Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
This commit is contained in:
Allan Stephens 2015-07-14 10:58:57 -04:00 committed by Anas Nashif
parent 319a648267
commit 80b109ae98

View File

@ -90,9 +90,9 @@ static struct k_proc *next_task_select(void)
* @brief The microkernel thread entry point
*
* This function implements the microkernel fiber. It waits for command
* packets to arrive on its stack channel. It executes all commands on the
* packets to arrive on its command stack. It executes all commands on the
* stack and then sets up the next task that is ready to run. Next it
* goes to wait on further inputs on its stack channel.
* goes to wait on further inputs on the command stack.
*
* @return Does not return.
*/