mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-07 12:35:41 +00:00
system_error: More conditional error codes for Darwin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119365 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1ce588c970
commit
bd61b4b0b7
@ -570,7 +570,11 @@ enum _ {
|
||||
operation_not_permitted = EPERM,
|
||||
operation_not_supported = EOPNOTSUPP,
|
||||
operation_would_block = EWOULDBLOCK,
|
||||
#ifdef EOWNERDEAD
|
||||
owner_dead = EOWNERDEAD,
|
||||
#else
|
||||
owner_dead = EINVAL,
|
||||
#endif
|
||||
permission_denied = EACCES,
|
||||
protocol_error = EPROTO,
|
||||
protocol_not_supported = EPROTONOSUPPORT,
|
||||
@ -578,7 +582,11 @@ enum _ {
|
||||
resource_deadlock_would_occur = EDEADLK,
|
||||
resource_unavailable_try_again = EAGAIN,
|
||||
result_out_of_range = ERANGE,
|
||||
#ifdef ENOTRECOVERABLE
|
||||
state_not_recoverable = ENOTRECOVERABLE,
|
||||
#else
|
||||
state_not_recoverable = EINVAL,
|
||||
#endif
|
||||
#ifdef ETIME
|
||||
stream_timeout = ETIME,
|
||||
#else
|
||||
|
Loading…
x
Reference in New Issue
Block a user