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:
parent
e5b3918a9f
commit
780324b8ed
41 changed files with 100 additions and 94 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue