summaryrefslogtreecommitdiff
path: root/libcr_ipc/tests/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'libcr_ipc/tests/config.h')
-rw-r--r--libcr_ipc/tests/config.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/libcr_ipc/tests/config.h b/libcr_ipc/tests/config.h
new file mode 100644
index 0000000..a648589
--- /dev/null
+++ b/libcr_ipc/tests/config.h
@@ -0,0 +1,20 @@
+/* config.h - Compile-time configuration for the libcr_ipc tests
+ *
+ * Copyright (C) 2024-2025 Luke T. Shumaker <lukeshu@lukeshu.com>
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+#ifndef _CONFIG_H_
+#define _CONFIG_H_
+
+#define CONFIG_COROUTINE_STACK_SIZE_DEFAULT (8*1024)
+#define CONFIG_COROUTINE_NAME_LEN 16
+#define CONFIG_COROUTINE_NUM 16
+
+#define CONFIG_COROUTINE_MEASURE_STACK 1
+#define CONFIG_COROUTINE_PROTECT_STACK 1
+#define CONFIG_COROUTINE_DEBUG 1
+#define CONFIG_COROUTINE_VALGRIND 1
+#define CONFIG_COROUTINE_GDB 1
+
+#endif /* _CONFIG_H_ */