Skip to content

Commit ba4ffe7

Browse files
committed
man: Fix stacksize documentation
1MB -> 256KB
1 parent bc376c5 commit ba4ffe7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

man/bundle_go.3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ int\ bundle_go(
2121
This construct launches a coroutine within the specified bundle.
2222
For more information about bundles see \f[B]bundle\f[].
2323
.PP
24-
The coroutine gets a 1MB stack.
24+
The coroutine gets a 256KB stack.
2525
The stack is guarded by a non\-writeable memory page.
2626
Therefore, stack overflow will result in a \f[B]SEGFAULT\f[] rather than
2727
overwriting memory that doesn\[aq]t belong to it.

man/go.3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ int\ go(
1818
.SH DESCRIPTION
1919
.PP
2020
This construct launches a coroutine.
21-
The coroutine gets a 1MB stack.
21+
The coroutine gets a 256KB stack.
2222
The stack is guarded by a non\-writeable memory page.
2323
Therefore, stack overflow will result in a \f[B]SEGFAULT\f[] rather than
2424
overwriting memory that doesn\[aq]t belong to it.

man/manpages.src

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ fxs = [
604604
This construct launches a coroutine within the specified bundle.
605605
For more information about bundles see **bundle**.
606606
607-
The coroutine gets a 1MB stack.
607+
The coroutine gets a 256KB stack.
608608
The stack is guarded by a non-writeable memory page. Therefore,
609609
stack overflow will result in a **SEGFAULT** rather than overwriting
610610
memory that doesn't belong to it.
@@ -1207,7 +1207,7 @@ fxs = [
12071207
allocates_handle: true,
12081208

12091209
prologue: `
1210-
This construct launches a coroutine. The coroutine gets a 1MB stack.
1210+
This construct launches a coroutine. The coroutine gets a 256KB stack.
12111211
The stack is guarded by a non-writeable memory page. Therefore,
12121212
stack overflow will result in a **SEGFAULT** rather than overwriting
12131213
memory that doesn't belong to it.

0 commit comments

Comments
 (0)