We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
stack splitting
from the heap
runtime⋅morestack
The text was updated successfully, but these errors were encountered:
https://agis.io/post/contiguous-stacks-golang/
1.2 runtime 에서 segmented stacks (split stacks) 를 사용하였다. 그런데 stack boundary 에서 생성, 제거가 반복되는 hot split (stack thrashing) 문제가 발생했다.
hot split
stack thrashing
1.3 runtime 부터 이 문제를 해결하고자 contiguous stacks 를 사용한다.
Sorry, something went wrong.
gopl 5.2 참고
No branches or pull requests
stack splitting
,from the heap
,runtime⋅morestack
The text was updated successfully, but these errors were encountered: