kernel: fix mis-use of sys_dlist_t vs sys_dnode_t in _timeout
Not a functional bug per-se since they resolve to the same thing, but a conceptual error nonetheless. Change-Id: Ia11f6bd272cabe8da21d59e3378b8348f034e814 Signed-off-by: Benjamin Walsh <benjamin.walsh@windriver.com>
This commit is contained in:
parent
6ca6c28dd3
commit
a2c58d5b85
1 changed files with 1 additions and 1 deletions
|
@ -653,7 +653,7 @@ struct _timeout;
|
|||
typedef void (*_timeout_func_t)(struct _timeout *t);
|
||||
|
||||
struct _timeout {
|
||||
sys_dlist_t node;
|
||||
sys_dnode_t node;
|
||||
struct k_thread *thread;
|
||||
sys_dlist_t *wait_q;
|
||||
int32_t delta_ticks_from_prev;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue