net: conn_mgr: Fix time delay in K_THREAD_DEFINE()
The time parameter cannot be K_NO_DELAY because the time delay parameter is ms so using value 0 instead. Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
parent
7d2c2691bb
commit
3f9d734d15
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ static void conn_mgr(void)
|
|||
|
||||
K_THREAD_DEFINE(conn_mgr_thread, CONFIG_NET_CONNECTION_MANAGER_STACK_SIZE,
|
||||
(k_thread_entry_t)conn_mgr, NULL, NULL, NULL,
|
||||
K_PRIO_COOP(2), 0, K_NO_WAIT);
|
||||
K_PRIO_COOP(2), 0, 0);
|
||||
|
||||
void net_conn_mgr_resend_status(void)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue