| 1 | #pragma once |
|---|---|
| 2 | #include <test/test.h> |
| 3 | |
| 4 | #include "thread/workqueue/internal.h" |
| 5 | #include <mem/alloc.h> |
| 6 | #include <mem/alloc_or_die.h> |
| 7 | #include <sch/sched.h> |
| 8 | #include <stdbool.h> |
| 9 | #include <stddef.h> |
| 10 | #include <stdint.h> |
| 11 | #include <string.h> |
| 12 | #include <thread/apc.h> |
| 13 | #include <thread/daemon.h> |
| 14 | #include <thread/reaper.h> |
| 15 | #include <thread/thread.h> |
| 16 | #include <thread/workqueue.h> |
| 17 | #include <time/spin_sleep.h> |
| 18 | #include <time/time.h> |
| 19 | |
| 20 | TEST_GROUP_DEFINE(workqueue); |
| 21 | TEST_GROUP_DEFINE(defer); |
| 22 |