Remove microkernel task routines from private API
These routines are only referenced in a single file. Change-Id: I55d2976d1db612bdbb89224b89b84bfcc5b9d707 Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
This commit is contained in:
parent
99001f8518
commit
91bb39de6d
2 changed files with 4 additions and 6 deletions
|
@ -200,9 +200,9 @@ void set_state_bit(
|
|||
* RETURNS: N/A
|
||||
*/
|
||||
|
||||
void start_task(struct k_proc *X, /* ptr to task control block */
|
||||
void (*func)(void) /* entry point for task */
|
||||
)
|
||||
static void start_task(struct k_proc *X, /* ptr to task control block */
|
||||
void (*func)(void) /* entry point for task */
|
||||
)
|
||||
{
|
||||
unsigned int contextOptions;
|
||||
|
||||
|
@ -244,7 +244,7 @@ void start_task(struct k_proc *X, /* ptr to task control block */
|
|||
* RETURNS: N/A
|
||||
*/
|
||||
|
||||
void abort_task(struct k_proc *X)
|
||||
static void abort_task(struct k_proc *X)
|
||||
{
|
||||
|
||||
/* Do normal context exit cleanup */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue