| ... | ... | @@ -368,6 +368,33 @@ pub const ENOMEDIUM = 123; |
| 368 | 368 | /// Wrong medium type |
| 369 | 369 | pub const EMEDIUMTYPE = 124; |
| 370 | 370 | |
| 371 | /// Operation canceled |
| 372 | pub const ECANCELED = 125; |
| 373 | |
| 374 | /// Required key not available |
| 375 | pub const ENOKEY = 126; |
| 376 | |
| 377 | /// Key has expired |
| 378 | pub const EKEYEXPIRED = 127; |
| 379 | |
| 380 | /// Key has been revoked |
| 381 | pub const EKEYREVOKED = 128; |
| 382 | |
| 383 | /// Key was rejected by service |
| 384 | pub const EKEYREJECTED = 129; |
| 385 | |
| 386 | // for robust mutexes |
| 387 | /// Owner died |
| 388 | pub const EOWNERDEAD = 130; |
| 389 | /// State not recoverable |
| 390 | pub const ENOTRECOVERABLE = 131; |
| 391 | |
| 392 | /// Operation not possible due to RF-kill |
| 393 | pub const ERFKILL = 132; |
| 394 | |
| 395 | /// Memory page has hardware error |
| 396 | pub const EHWPOISON = 133; |
| 397 | |
| 371 | 398 | // nameserver query return codes |
| 372 | 399 | |
| 373 | 400 | /// DNS server returned answer with no data |