mirror of
https://github.com/ziglang/zig.git
synced 2026-02-13 04:48:20 +00:00
std: add some missing errnos on linux
This commit is contained in:
parent
356ef3840f
commit
9bc8a1e1d0
@ -368,6 +368,33 @@ pub const ENOMEDIUM = 123;
|
||||
/// Wrong medium type
|
||||
pub const EMEDIUMTYPE = 124;
|
||||
|
||||
/// Operation canceled
|
||||
pub const ECANCELED = 125;
|
||||
|
||||
/// Required key not available
|
||||
pub const ENOKEY = 126;
|
||||
|
||||
/// Key has expired
|
||||
pub const EKEYEXPIRED = 127;
|
||||
|
||||
/// Key has been revoked
|
||||
pub const EKEYREVOKED = 128;
|
||||
|
||||
/// Key was rejected by service
|
||||
pub const EKEYREJECTED = 129;
|
||||
|
||||
// for robust mutexes
|
||||
/// Owner died
|
||||
pub const EOWNERDEAD = 130;
|
||||
/// State not recoverable
|
||||
pub const ENOTRECOVERABLE = 131;
|
||||
|
||||
/// Operation not possible due to RF-kill
|
||||
pub const ERFKILL = 132;
|
||||
|
||||
/// Memory page has hardware error
|
||||
pub const EHWPOISON = 133;
|
||||
|
||||
// nameserver query return codes
|
||||
|
||||
/// DNS server returned answer with no data
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user