diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-05-29 16:23:41 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-05-29 16:23:41 +0300 |
| commit | d7cb08134102b7a2410c48d2a1802193f9031e00 (patch) | |
| tree | 711498836d6679ca2fc3b4ba9369b7fe53d7a3fa /include/apos/conf.h | |
| parent | e148f38dc937c34b222ba8df8612b3fa2b6bc349 (diff) | |
| download | kmi-d7cb08134102b7a2410c48d2a1802193f9031e00.tar.gz kmi-d7cb08134102b7a2410c48d2a1802193f9031e00.zip | |
continue documentation efforts
Diffstat (limited to 'include/apos/conf.h')
| -rw-r--r-- | include/apos/conf.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/apos/conf.h b/include/apos/conf.h index c2653cd..5b9bf10 100644 --- a/include/apos/conf.h +++ b/include/apos/conf.h @@ -9,7 +9,21 @@ #include <apos/types.h> +/** + * Provides access to the runtime global parameter. + * \remark Note that runtime parameter passing is not yet implemented, and I might + * implement per-thread stack sizes as well. + * \global + * @todo This should probably be a function instead. + */ extern size_t __thread_stack_size; + +/** + * Provides access to the runtime global parameter. + * \see __thread_stack_size. + * \global + * @todo This should probably also be a function instead. + */ extern size_t __call_stack_size; #endif /* APOS_CONF_H */ |
