samples: net: fix stack definitions

Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
Andrew Boie 2017-07-25 19:04:56 -07:00 committed by Anas Nashif
commit 010498da62
5 changed files with 5 additions and 5 deletions

View file

@ -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)

View file

@ -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)

View file

@ -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)

View file

@ -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)

View file

@ -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)