From 50c9d2da9002482c9fc9120edec0a3149c513643 Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Tue, 8 Apr 2014 21:32:21 +0200 Subject: [PATCH] core: documentation: replaced task w/ thread --- core/include/sched.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/include/sched.h b/core/include/sched.h index 217e88a7b..253fb2c05 100644 --- a/core/include/sched.h +++ b/core/include/sched.h @@ -39,7 +39,7 @@ #endif /** - * @brief Triggers the scheduler to schedule the next task + * @brief Triggers the scheduler to schedule the next thread */ void sched_run(void); @@ -63,7 +63,7 @@ void sched_set_status(tcb_t *process, unsigned int status); void sched_switch(uint16_t current_prio, uint16_t other_prio); /** - * @brief Call context switching at task exit + * @brief Call context switching at thread exit */ void cpu_switch_context_exit(void);