diff options
author | Peter Lieven <pl@kamp.de> | 2016-09-27 11:58:42 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2016-09-29 14:13:39 +0200 |
commit | 8adcd6fb6d14ff7fbb47179384dcddbd6dfd95a3 (patch) | |
tree | 247facc597439a6273b23ad0f7dd39fdcca3778c /util/coroutine-sigaltstack.c | |
parent | be87a393f9aed6f9406a728d4d55199aee0ebbb4 (diff) |
coroutine: add a macro for the coroutine stack size
Signed-off-by: Peter Lieven <pl@kamp.de>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'util/coroutine-sigaltstack.c')
-rw-r--r-- | util/coroutine-sigaltstack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/coroutine-sigaltstack.c b/util/coroutine-sigaltstack.c index 171cd44b7f..a5bcb7e19e 100644 --- a/util/coroutine-sigaltstack.c +++ b/util/coroutine-sigaltstack.c @@ -143,7 +143,7 @@ static void coroutine_trampoline(int signal) Coroutine *qemu_coroutine_new(void) { - const size_t stack_size = 1 << 20; + const size_t stack_size = COROUTINE_STACK_SIZE; CoroutineSigAltStack *co; CoroutineThreadState *coTS; struct sigaction sa; |