aboutsummaryrefslogtreecommitdiff
path: root/test/test_initrd.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_initrd.c')
-rw-r--r--test/test_initrd.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/test/test_initrd.c b/test/test_initrd.c
index fb5197b..75611a7 100644
--- a/test/test_initrd.c
+++ b/test/test_initrd.c
@@ -6,13 +6,11 @@
#include <fbos/sched.h>
#include <fbos/mm.h>
-unsigned long stack[STACK_SIZE / sizeof(unsigned long)];
-
struct task_struct tasks[4] = {
- [TASK_INIT] = { .stack = stack, .entry_addr = NULL, },
- [TASK_FIZZ] = { .stack = stack, .entry_addr = NULL, },
- [TASK_BUZZ] = { .stack = stack, .entry_addr = NULL, },
- [TASK_FIZZBUZZ] = { .stack = stack, .entry_addr = NULL, },
+ [TASK_INIT] = { .entry_addr = NULL, },
+ [TASK_FIZZ] = { .entry_addr = NULL, },
+ [TASK_BUZZ] = { .entry_addr = NULL, },
+ [TASK_FIZZBUZZ] = { .entry_addr = NULL, },
};
int main(void)