net: consistent the net sem wait naming conversion

to prepare the new mutex wait function

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao
2023-01-13 14:51:38 +08:00
committed by Alan Carvalho de Assis
parent 32d0c2ce9d
commit a851ad84c3
57 changed files with 145 additions and 143 deletions

View File

@@ -1218,7 +1218,7 @@ ssize_t psock_tcp_send(FAR struct socket *psock, FAR const void *buf,
goto errout_with_lock;
}
ret = net_timedwait_uninterruptible(&conn->snd_sem,
ret = net_sem_timedwait_uninterruptible(&conn->snd_sem,
tcp_send_gettimeout(start, timeout));
if (ret < 0)
{