Rename tcpip_send_api_msg to tcpip_send_msg_wait_sem (hopefully a little bit clearer name)

This commit is contained in:
Dirk Ziegelmeier
2016-03-16 21:54:38 +01:00
parent 5f8b5cbb20
commit d6adc1f6cb
3 changed files with 9 additions and 9 deletions

View File

@@ -95,7 +95,7 @@ extern sys_mutex_t lock_tcpip_core;
#define API_EXPR_DEREF(expr) *(expr)
#endif /* LWIP_MPU_COMPATIBLE */
err_t tcpip_send_api_msg(tcpip_callback_fn fn, void *apimsg, sys_sem_t* sem);
err_t tcpip_send_msg_wait_sem(tcpip_callback_fn fn, void *apimsg, sys_sem_t* sem);
struct tcpip_api_call;
typedef err_t (*tcpip_api_call_fn)(struct tcpip_api_call* call);
@@ -131,7 +131,7 @@ struct tcpip_msg {
struct {
tcpip_callback_fn function;
void* msg;
} api;
} api_msg;
struct tcpip_api_call *api_call;
struct {
struct pbuf *p;