Qinch

Results 1 issues of Qinch

_save_stack函数中dummy变量定义在coroutine_yield是不是更好? ```bash static void _save_stack(struct coroutine *C, char *top, char *bottom) { //top:stack bottom:sp assert(top - bottom cap < top - bottom) { free(C->stack); C->cap = top-bottom; C->stack = malloc(C->cap);...