From 036cb26fa3d5bdd9a9ea109356812e2aa1cf7de2 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Wed, 20 Apr 2011 11:31:07 +0000 Subject: [PATCH] sys_arch_timeouts() is not needed any more. --- CHANGELOG | 3 +++ doc/sys_arch.txt | 12 ------------ 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 1ad90506..903de15c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -237,6 +237,9 @@ HISTORY ++ Bugfixes: + 2011-04-20: Simon Goldschmidt + * sys_arch.txt: sys_arch_timeouts() is not needed any more. + 2011-04-13: Simon Goldschmidt * tcp.c, udp.c: Fixed bug #33048 (Bad range for IP source port numbers) by using ports in the IANA private/dynamic range (49152 through 65535). diff --git a/doc/sys_arch.txt b/doc/sys_arch.txt index 66310a91..38377b66 100644 --- a/doc/sys_arch.txt +++ b/doc/sys_arch.txt @@ -123,18 +123,6 @@ The following functions must be implemented by the sys_arch: sys_arch_mbox_fetch(mbox,msg,1) although this would introduce unnecessary delays. -- struct sys_timeouts *sys_arch_timeouts(void) - - Returns a pointer to the per-thread sys_timeouts structure. In lwIP, - each thread has a list of timeouts which is repressented as a linked - list of sys_timeout structures. The sys_timeouts structure holds a - pointer to a linked list of timeouts. This function is called by - the lwIP timeout scheduler and must not return a NULL value. - - In a single thread sys_arch implementation, this function will - simply return a pointer to a global sys_timeouts variable stored in - the sys_arch module. - If threads are supported by the underlying operating system and if such functionality is needed in lwIP, the following function will have to be implemented as well: -- 2.39.2