kernel/timeout: Remove timeout wait_q field

Per previous patch, this is known to be identical with
thread->pended_on.

Signed-off-by: Andy Ross <andrew.j.ross@intel.com>
This commit is contained in:
Andy Ross 2018-09-26 13:36:02 -07:00 committed by Anas Nashif
commit d61b1f8ef8
3 changed files with 3 additions and 14 deletions

View file

@ -216,7 +216,6 @@ typedef void (*_timeout_func_t)(struct _timeout *t);
struct _timeout {
sys_dnode_t node;
struct k_thread *thread;
sys_dlist_t *wait_q;
s32_t delta_ticks_from_prev;
_timeout_func_t func;
};