diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2015-12-02 15:41:38 +0000 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2015-12-02 15:41:38 +0000 |
| commit | 30a9fd5d13b0a4290382adc4c1bf619677066b89 (patch) | |
| tree | 7327dbaa1da19f0e397dfef405a45755ff61a92c /main-loop.c | |
| parent | 9d7b969ea6d9663a94760c6c131481b366f4d38a (diff) | |
| parent | 0c2d70c448b7853a91cfa63659aa3cc6630fb9be (diff) | |
| download | focaccia-qemu-30a9fd5d13b0a4290382adc4c1bf619677066b89.tar.gz focaccia-qemu-30a9fd5d13b0a4290382adc4c1bf619677066b89.zip | |
Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging
* exec.c use after free * Xen 32-on-64 breakage * missing EINTR * naughty warning under qtest # gpg: Signature made Wed 02 Dec 2015 12:13:55 GMT using RSA key ID 78C7AE83 # gpg: Good signature from "Paolo Bonzini <bonzini@gnu.org>" # gpg: aka "Paolo Bonzini <pbonzini@redhat.com>" * remotes/bonzini/tags/for-upstream: translate-all: ensure host page mask is always extended with 1's main-loop: suppress warnings under qtest qemu-char: retry g_poll on EINTR exec: Stop using memory after free Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'main-loop.c')
| -rw-r--r-- | main-loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main-loop.c b/main-loop.c index df28670606..5877615387 100644 --- a/main-loop.c +++ b/main-loop.c @@ -230,7 +230,7 @@ static int os_host_main_loop_wait(int64_t timeout) if (!timeout && (spin_counter > MAX_MAIN_LOOP_SPIN)) { static bool notified; - if (!notified && !qtest_enabled()) { + if (!notified && !qtest_driver()) { fprintf(stderr, "main-loop: WARNING: I/O thread spun for %d iterations\n", MAX_MAIN_LOOP_SPIN); |