summaryrefslogtreecommitdiff
path: root/coroutine/win64/Context.h
diff options
context:
space:
mode:
Diffstat (limited to 'coroutine/win64/Context.h')
-rw-r--r--coroutine/win64/Context.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/coroutine/win64/Context.h b/coroutine/win64/Context.h
index 3b6ffb2175..32d6e1038b 100644
--- a/coroutine/win64/Context.h
+++ b/coroutine/win64/Context.h
@@ -40,9 +40,10 @@ static inline void coroutine_initialize(
}
/* Windows Thread Information Block */
- *--context->stack_pointer = 0;
- *--context->stack_pointer = stack_pointer;
- *--context->stack_pointer = (void*)stack_size;
+ *--context->stack_pointer = 0; /* gs:[0x00] */
+ *--context->stack_pointer = stack_pointer + stack_size; /* gs:[0x08] */
+ *--context->stack_pointer = (void*)stack_pointer; /* gs:[0x10] */
+
*--context->stack_pointer = (void*)start;