samples: kernel: condition_variables: Remove unneeded tstack extern
This commit removes the `tstack` symbol extern that is not used anywhere in this sample. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
This commit is contained in:
parent
19ba592f07
commit
ac04889ee0
2 changed files with 0 additions and 2 deletions
|
|
@ -18,7 +18,6 @@ K_CONDVAR_DEFINE(count_threshold_cv);
|
|||
|
||||
#define STACK_SIZE (1024 + CONFIG_TEST_EXTRA_STACK_SIZE)
|
||||
|
||||
K_THREAD_STACK_EXTERN(tstack);
|
||||
K_THREAD_STACK_ARRAY_DEFINE(tstacks, NUM_THREADS, STACK_SIZE);
|
||||
|
||||
static struct k_thread t[NUM_THREADS];
|
||||
|
|
|
|||
|
|
@ -11,7 +11,6 @@
|
|||
#define NUM_THREADS 20
|
||||
#define STACK_SIZE (1024 + CONFIG_TEST_EXTRA_STACK_SIZE)
|
||||
|
||||
K_THREAD_STACK_EXTERN(tstack);
|
||||
K_THREAD_STACK_ARRAY_DEFINE(tstacks, NUM_THREADS, STACK_SIZE);
|
||||
|
||||
static struct k_thread t[NUM_THREADS];
|
||||
|
|
|
|||
Loading…
Reference in a new issue