Restore build on older Linux hosts.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3084 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
aa268ea622
commit
b7fe5db7e5
@ -281,12 +281,24 @@ static uint16_t host_to_target_errno_table[1200] = {
|
||||
[ECANCELED] = TARGET_ECANCELED,
|
||||
[ENOMEDIUM] = TARGET_ENOMEDIUM,
|
||||
[EMEDIUMTYPE] = TARGET_EMEDIUMTYPE,
|
||||
#ifdef ENOKEY
|
||||
[ENOKEY] = TARGET_ENOKEY,
|
||||
#endif
|
||||
#ifdef EKEYEXPIRED
|
||||
[EKEYEXPIRED] = TARGET_EKEYEXPIRED,
|
||||
#endif
|
||||
#ifdef EKEYREVOKED
|
||||
[EKEYREVOKED] = TARGET_EKEYREVOKED,
|
||||
#endif
|
||||
#ifdef EKEYREJECTED
|
||||
[EKEYREJECTED] = TARGET_EKEYREJECTED,
|
||||
#endif
|
||||
#ifdef EOWNERDEAD
|
||||
[EOWNERDEAD] = TARGET_EOWNERDEAD,
|
||||
#endif
|
||||
#ifdef ENOTRECOVERABLE
|
||||
[ENOTRECOVERABLE] = TARGET_ENOTRECOVERABLE,
|
||||
#endif
|
||||
};
|
||||
|
||||
static inline int host_to_target_errno(int err)
|
||||
|
Loading…
Reference in New Issue
Block a user