Home | History | Annotate | Download | only in runtime

Lines Matching full:stacksize

2186 // Allocate a new g, with a stack big enough for stacksize bytes.
2187 func malg(stacksize int32) *g {
2189 if stacksize >= 0 {
2190 stacksize = round2(_StackSystem + stacksize)
2192 newg.stack, newg.stkbar = stackalloc(uint32(stacksize))
2196 newg.stackAlloc = uintptr(stacksize)