summaryrefslogtreecommitdiff
path: root/libcr_ipc/tests/config.h
blob: b00508c61c22cca4ebc9724b419ceaf658a7017a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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    (4*1024)
#define CONFIG_COROUTINE_NAME_LEN              16
#define CONFIG_COROUTINE_NUM                   8

#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_ */