diff options
Diffstat (limited to 'libcr/tests/test_matrix')
-rw-r--r-- | libcr/tests/test_matrix/config.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libcr/tests/test_matrix/config.h b/libcr/tests/test_matrix/config.h new file mode 100644 index 0000000..978b9ac --- /dev/null +++ b/libcr/tests/test_matrix/config.h @@ -0,0 +1,14 @@ +/* config.h - Compile-time configuration for libcr test_matrix + * + * 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 (4*1024) +#define CONFIG_COROUTINE_NAME_LEN 16 +#define CONFIG_COROUTINE_NUM 2 + +#endif /* _CONFIG_H_ */ |