diff options
Diffstat (limited to 'core/include/thread.h')
-rw-r--r-- | core/include/thread.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/include/thread.h b/core/include/thread.h index c8e7f3f1..9171eaab 100644 --- a/core/include/thread.h +++ b/core/include/thread.h @@ -20,10 +20,13 @@ struct thread_block { bool timed_out; }; +struct sys_timeouts; + struct thread { void *esp; /* Must be first; stack pointer */ struct thread_list list; struct thread_block *blocked; + struct sys_timeouts *timeouts; /* For the benefit of lwIP */ int prio; }; |