Skip to content

Commit

Permalink
fixed #15
Browse files Browse the repository at this point in the history
  • Loading branch information
TapirLiu committed May 13, 2019
1 parent 3798eab commit 9dc0d7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion articles/memory-block.html
Expand Up @@ -90,7 +90,7 @@ <h3>什么时候需要开辟内存块?</h3>
<h3>内存块将被开辟在何处?</h3>

<p>
对每一个使用标准编译器编译的Go程序,在运行时刻,每一个协程在将维护一个栈(stack)。
对每一个使用标准编译器编译的Go程序,在运行时刻,每一个协程将维护一个栈(stack)。
一个栈是一个预申请的内存段,它做为一个内存池供某些内存块从中开辟。
每个协程的初始栈大小比较小(在64位系统上大概2千字节)。
每个栈的大小在协程运行的时候将按照需要增长和收缩。
Expand Down

0 comments on commit 9dc0d7a

Please sign in to comment.