diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2011-04-08 05:31:41 -0700 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2011-04-09 18:27:06 -0700 |
commit | 853e2e8034316a07beedff69adcdb0d04c4cd113 (patch) | |
tree | cf16f6df9c3e6a05737448b7638e410e2ece4f29 /core/include | |
parent | 5cf65b7ca34bd3638603b16b4ef2cef1345354a5 (diff) | |
download | syslinux-853e2e8034316a07beedff69adcdb0d04c4cd113.tar.gz syslinux-853e2e8034316a07beedff69adcdb0d04c4cd113.tar.xz syslinux-853e2e8034316a07beedff69adcdb0d04c4cd113.zip |
core thread: Rename timeouts pvt to better reflect it's use.
lwip needs to find a per thread list of timeouts when it calls
sys_arch_thread_timeouts(). Since we support threads we
can easily support this extra bit of private data.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Diffstat (limited to 'core/include')
-rw-r--r-- | core/include/thread.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/include/thread.h b/core/include/thread.h index f1212ebf..55a3ed7c 100644 --- a/core/include/thread.h +++ b/core/include/thread.h @@ -20,13 +20,11 @@ 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 */ + void *pvt; /* For the benefit of lwIP */ int prio; }; |