File tree 2 files changed +11
-1
lines changed
src/unix/bsd/netbsdlike/netbsd
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -1567,3 +1567,5 @@ EXTATTR_NAMESPACE_EMPTY
1567
1567
extattr_list_fd
1568
1568
extattr_list_file
1569
1569
extattr_list_link
1570
+ EOWNERDEAD
1571
+ ENOTRECOVERABLE
Original file line number Diff line number Diff line change @@ -1464,7 +1464,15 @@ pub const ENOATTR: ::c_int = 93;
1464
1464
pub const EMULTIHOP : :: c_int = 94 ;
1465
1465
pub const ENOLINK : :: c_int = 95 ;
1466
1466
pub const EPROTO : :: c_int = 96 ;
1467
- pub const ELAST : :: c_int = 96 ;
1467
+ pub const EOWNERDEAD : :: c_int = 97 ;
1468
+ pub const ENOTRECOVERABLE : :: c_int = 98 ;
1469
+ #[ deprecated(
1470
+ since = "0.2.143" ,
1471
+ note = "This value will always match the highest defined error number \
1472
+ and thus is not stable. \
1473
+ See #3040 for more info."
1474
+ ) ]
1475
+ pub const ELAST : :: c_int = 98 ;
1468
1476
1469
1477
pub const F_DUPFD_CLOEXEC : :: c_int = 12 ;
1470
1478
pub const F_CLOSEM : :: c_int = 10 ;
You can’t perform that action at this time.
0 commit comments