blob: 72eade101f13d1f3b912e8cb0df2a058e70d9ff9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* libcr/tests/test_matrix/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
#define CONFIG_HEAP_SIZE (CONFIG_COROUTINE_STACK_SIZE_DEFAULT*CONFIG_COROUTINE_NUM+1024)
#endif /* _CONFIG_H_ */
|