cleanup: rename fiber/task -> thread

We still have many places talking about tasks and threads, replace those
with thread terminology.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2017-10-29 07:10:22 -04:00 committed by Anas Nashif
commit 780324b8ed
41 changed files with 100 additions and 94 deletions

View file

@ -110,12 +110,12 @@ struct _kernel {
* for a thread to only "own" the XMM registers.
*/
/* thread (fiber or task) that owns the FP regs */
/* thread that owns the FP regs */
struct k_thread *current_fp;
#endif
#if defined(CONFIG_THREAD_MONITOR)
struct k_thread *threads; /* singly linked list of ALL fiber+tasks */
struct k_thread *threads; /* singly linked list of ALL threads */
#endif
#if defined(CONFIG_USERSPACE)