commit | 2084a8e330bab402e9aab082aad9ce75f9f6db87 | [log] [tgz] |
---|---|---|
author | Paolo Bonzini <pbonzini@redhat.com> | Thu May 10 09:27:50 2012 +0200 |
committer | Kevin Wolf <kwolf@redhat.com> | Thu May 10 11:01:59 2012 +0200 |
tree | e6a851a436385a907accf21b98abf8b5fbb73b15 | |
parent | 6c806637fac6d94e4c9608891e5adf48440cee46 [diff] [blame] |
declare ECANCELED on all machines This is needed in particular on Win32. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
diff --git a/qemu-common.h b/qemu-common.h index 50f659a..cccfb42 100644 --- a/qemu-common.h +++ b/qemu-common.h
@@ -61,6 +61,9 @@ #if !defined(ENOTSUP) #define ENOTSUP 4096 #endif +#if !defined(ECANCELED) +#define ECANCELED 4097 +#endif #ifndef TIME_MAX #define TIME_MAX LONG_MAX #endif