diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2011-09-21 09:28:31 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2011-09-21 10:50:10 +0100 |
commit | 53380ac37f252ec67a5597e79a3893795bf273ca (patch) | |
tree | 9c619c0112579f19d68817746a133d0251078963 /qemu-thread-win32.c | |
parent | c2162a8b07dbc5479bce3dff5882344f61a37647 (diff) |
Abort on thread layer errors
Makes it easier to catch the bug in gdb as there is no need to set an
explicit breakpoint.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'qemu-thread-win32.c')
-rw-r--r-- | qemu-thread-win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-thread-win32.c b/qemu-thread-win32.c index a27332e669..db8e744729 100644 --- a/qemu-thread-win32.c +++ b/qemu-thread-win32.c @@ -24,7 +24,7 @@ static void error_exit(int err, const char *msg) NULL, err, 0, (LPTSTR)&pstr, 2, NULL); fprintf(stderr, "qemu: %s: %s\n", msg, pstr); LocalFree(pstr); - exit(1); + abort(); } void qemu_mutex_init(QemuMutex *mutex) |