netconn API: Remove api_msg wrapper struct, it is not needed any more

This commit is contained in:
Dirk Ziegelmeier
2016-03-16 21:31:19 +01:00
parent 2575c7fb5f
commit d38cdccbcd
5 changed files with 63 additions and 71 deletions

View File

@@ -313,8 +313,9 @@ tcpip_untimeout(sys_timeout_handler h, void *arg)
/**
* Synchronously calls function in TCPIP thread and waits for its completion
* by blocking on a provided semaphore pointer.
* Sends a message to TCPIP thread to call a function. Caller thread blocks on
* on a provided semaphore, which ist NOT automatically signalled by TCPIP thread,
* this has to be done by the user.
* It is recommended to use LWIP_TCPIP_CORE_LOCKING since this is the way
* with least runtime overhead.
*