Author: cmihail
Date: Tue Jul 26 19:29:57 2011
New Revision: 52900

URL: http://svn.reactos.org/svn/reactos?rev=52900&view=rev
Log:
[lwIP]
- Revert the timer hack. It's no longer needed for speed boosts. Now lwIP is 
clean of any foreign code.

Modified:
    branches/GSoC_2011/TcpIpDriver/lib/drivers/lwip/src/core/timers.c

Modified: branches/GSoC_2011/TcpIpDriver/lib/drivers/lwip/src/core/timers.c
URL: 
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/TcpIpDriver/lib/drivers/lwip/src/core/timers.c?rev=52900&r1=52899&r2=52900&view=diff
==============================================================================
--- branches/GSoC_2011/TcpIpDriver/lib/drivers/lwip/src/core/timers.c 
[iso-8859-1] (original)
+++ branches/GSoC_2011/TcpIpDriver/lib/drivers/lwip/src/core/timers.c 
[iso-8859-1] Tue Jul 26 19:29:57 2011
@@ -427,7 +427,7 @@
     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;
     }


Reply via email to