aboutsummaryrefslogtreecommitdiff
path: root/coroutine-sigaltstack.c
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2012-11-30 10:24:24 -0600
committerAnthony Liguori <aliguori@us.ibm.com>2012-11-30 10:24:24 -0600
commit90e07938aa08fc179270d46c35fe9fd27c527f33 (patch)
tree412605f6533e8bcebc5ea8da4d3dfa358b715b9e /coroutine-sigaltstack.c
parent3235f92784bcf679894b34081f4f4b04e4a358e3 (diff)
parent2ad2210a7d2483c4c98423ebd59fad87c6124096 (diff)
downloadqemu-90e07938aa08fc179270d46c35fe9fd27c527f33.zip
qemu-90e07938aa08fc179270d46c35fe9fd27c527f33.tar.gz
qemu-90e07938aa08fc179270d46c35fe9fd27c527f33.tar.bz2
Merge remote-tracking branch 'kwolf/for-anthony' into staging
* kwolf/for-anthony: coroutine-sigaltstack.c: Use stack_t, not struct sigaltstack stream: fix ratelimit_set_speed atapi: make change media detection for guests easier Documentation: Update image format information Documentation: Update block cache mode information Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'coroutine-sigaltstack.c')
-rw-r--r--coroutine-sigaltstack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coroutine-sigaltstack.c b/coroutine-sigaltstack.c
index 861e878..39dbaa5 100644
--- a/coroutine-sigaltstack.c
+++ b/coroutine-sigaltstack.c
@@ -171,8 +171,8 @@ static Coroutine *coroutine_new(void)
CoroutineThreadState *coTS;
struct sigaction sa;
struct sigaction osa;
- struct sigaltstack ss;
- struct sigaltstack oss;
+ stack_t ss;
+ stack_t oss;
sigset_t sigs;
sigset_t osigs;
jmp_buf old_env;