mirror of
https://github.com/Dasharo/zephyr.git
synced 2026-03-06 14:57:20 -08:00
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:
committed by
Carles Cufí
parent
19ba592f07
commit
ac04889ee0
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user