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:
parent
3146b59204
commit
0a8991773b
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue