mirror of
https://github.com/qemu/qemu.git
synced 2024-11-25 11:53:39 +08:00
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>
This commit is contained in:
parent
6c806637fa
commit
2084a8e330
@ -61,6 +61,9 @@ typedef struct Monitor Monitor;
|
||||
#if !defined(ENOTSUP)
|
||||
#define ENOTSUP 4096
|
||||
#endif
|
||||
#if !defined(ECANCELED)
|
||||
#define ECANCELED 4097
|
||||
#endif
|
||||
#ifndef TIME_MAX
|
||||
#define TIME_MAX LONG_MAX
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user