diff options
Diffstat (limited to 'libcr_ipc/tests/config.h')
-rw-r--r-- | libcr_ipc/tests/config.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/libcr_ipc/tests/config.h b/libcr_ipc/tests/config.h new file mode 100644 index 0000000..949a82f --- /dev/null +++ b/libcr_ipc/tests/config.h @@ -0,0 +1,19 @@ +/* config.h - TODO + * + * Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com> + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +#ifndef _CONFIG_H_ +#define _CONFIG_H_ + +#define CONFIG_COROUTINE_DEFAULT_STACK_SIZE (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 + +#endif /* _CONFIG_H_ */ |