samples: net: fix stack definitions
Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
parent
dd6d34e7dc
commit
010498da62
5 changed files with 5 additions and 5 deletions
|
@ -411,7 +411,7 @@ exit:
|
|||
}
|
||||
|
||||
#define STACK_SIZE 4096
|
||||
u8_t stack[STACK_SIZE];
|
||||
K_THREAD_STACK_DEFINE(stack, STACK_SIZE);
|
||||
static struct k_thread thread_data;
|
||||
|
||||
static inline int init_app(void)
|
||||
|
|
|
@ -632,7 +632,7 @@ exit:
|
|||
}
|
||||
|
||||
#define STACK_SIZE 4096
|
||||
u8_t stack[STACK_SIZE];
|
||||
K_THREAD_STACK_DEFINE(stack, STACK_SIZE);
|
||||
static struct k_thread thread_data;
|
||||
|
||||
static inline int init_app(void)
|
||||
|
|
|
@ -284,7 +284,7 @@ exit:
|
|||
}
|
||||
|
||||
#define STACK_SIZE 8192
|
||||
u8_t stack[STACK_SIZE];
|
||||
K_THREAD_STACK_DEFINE(stack, STACK_SIZE);
|
||||
static struct k_thread dtls_thread;
|
||||
|
||||
static inline int init_app(void)
|
||||
|
|
|
@ -362,7 +362,7 @@ exit:
|
|||
}
|
||||
|
||||
#define STACK_SIZE 8192
|
||||
u8_t stack[STACK_SIZE];
|
||||
K_THREAD_STACK_DEFINE(stack, STACK_SIZE);
|
||||
static struct k_thread dtls_thread;
|
||||
|
||||
static inline int init_app(void)
|
||||
|
|
|
@ -315,7 +315,7 @@ exit:
|
|||
}
|
||||
|
||||
#define STACK_SIZE 8192
|
||||
u8_t stack[STACK_SIZE];
|
||||
K_THREAD_STACK_DEFINE(stack, STACK_SIZE);
|
||||
static struct k_thread tls_thread;
|
||||
|
||||
void main(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue