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

@ -75,7 +75,7 @@ void sys_event_logger_put(struct event_logger *logger, u16_t event_id,
* than the message size the function returns -EMSGSIZE. Otherwise, it returns
* the number of 32-bit words copied. The function retrieves messages in
* FIFO order. If there is no message in the buffer the function returns
* immediately. It can only be called from a fiber.
* immediately. It can only be called from a thread.
*
* @param logger Pointer to the event logger used.
* @param event_id Pointer to the id of the fetched event.
@ -101,7 +101,7 @@ int sys_event_logger_get(struct event_logger *logger, u16_t *event_id,
* returns the number of 32-bit words copied.
*
* The function retrieves messages in FIFO order. The caller pends if there is
* no message available in the buffer. It can only be called from a fiber.
* no message available in the buffer. It can only be called from a thread.
*
* @param logger Pointer to the event logger used.
* @param event_id Pointer to the ID of the fetched event.
@ -128,7 +128,7 @@ int sys_event_logger_get_wait(struct event_logger *logger, u16_t *event_id,
* number of dwords copied. The function retrieves messages in FIFO order.
* If no message is available in the buffer, the caller pends until a
* new message is added or the timeout expires. This routine can only be
* called from a fiber.
* called from a thread.
*
* @param logger Pointer to the event logger used.
* @param event_id Pointer to the ID of the event fetched.