Fix lwIP retransmission problems.
[bertos.git] / bertos / net / lwip / src / arch / sys_arch.c
index 4ef9d08ce195f787cd98b9fa929636558790fe21..d626f0cfd09933c66d6d9c9e3462808fa95dfd5d 100644 (file)
@@ -317,15 +317,6 @@ static struct sys_timeouts lwip_system_timeouts; // Default timeouts list for lw
 
 struct sys_timeouts *sys_arch_timeouts(void)
 {
-       ThreadNode *thread_node;
-       struct Process *curr_pid = proc_current();
-
-       FOREACH_NODE(thread_node, &used_thread)
-       {
-               if (thread_node->pid == curr_pid)
-                       return &(thread_node->timeout);
-       }
-
        return &lwip_system_timeouts;
 }