mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 22:46:17 +00:00
[lwIP]
- Revert the timer hack. It's no longer needed for speed boosts. Now lwIP is clean of any foreign code. svn path=/branches/GSoC_2011/TcpIpDriver/; revision=52900
This commit is contained in:
parent
ddd3bd5f7a
commit
6b6f11031e
1 changed files with 1 additions and 1 deletions
|
@ -427,7 +427,7 @@ sys_timeouts_mbox_fetch(sys_mbox_t *mbox, void **msg)
|
|||
time_needed = sys_arch_mbox_fetch(mbox, msg, 0);
|
||||
} else {
|
||||
if (next_timeout->time > 0) {
|
||||
time_needed = sys_arch_mbox_fetch(mbox, msg, 5);//next_timeout->time);
|
||||
time_needed = sys_arch_mbox_fetch(mbox, msg, next_timeout->time);
|
||||
} else {
|
||||
time_needed = SYS_ARCH_TIMEOUT;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue