aboutsummaryrefslogtreecommitdiff
path: root/include/apos/conf.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/apos/conf.h')
-rw-r--r--include/apos/conf.h14
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 */