samples: net: dumb_http_server_mt: Fix K_THREAD_DEFINE() call

Convert to use k_timeout_t

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
Jukka Rissanen 2020-04-06 17:11:34 +03:00
commit 0a8991773b

View file

@ -64,11 +64,11 @@ static void process_tcp6(void);
K_THREAD_DEFINE(tcp4_thread_id, STACK_SIZE,
process_tcp4, NULL, NULL, NULL,
THREAD_PRIORITY, 0, K_FOREVER);
THREAD_PRIORITY, 0, -1);
K_THREAD_DEFINE(tcp6_thread_id, STACK_SIZE,
process_tcp6, NULL, NULL, NULL,
THREAD_PRIORITY, 0, K_FOREVER);
THREAD_PRIORITY, 0, -1);
static ssize_t sendall(int sock, const void *buf, size_t len)
{