summaryrefslogtreecommitdiff
path: root/src/base/fiber.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/fiber.hh')
-rw-r--r--src/base/fiber.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/base/fiber.hh b/src/base/fiber.hh
index 3d82075f0..4d95e032b 100644
--- a/src/base/fiber.hh
+++ b/src/base/fiber.hh
@@ -106,8 +106,10 @@ class Fiber
Fiber *link;
// The stack for this context, or a nullptr if allocated elsewhere.
- uint8_t *stack;
+ void *stack;
size_t stackSize;
+ void *guardPage;
+ size_t guardPageSize;
#if HAVE_VALGRIND
unsigned valgrindStackId;
#endif