mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-06 13:09:50 +00:00
Add the following errno definitions to /usr/lib/dtrace/errno.d
ENOTCAPABLE (93) ECAPMODE (94) ENOTRECOVERABLE (95) EOWNERDEAD (96) ERELOOKUP (-5) and update ELAST (92 -> 96) Reviewed by: markj Sponsored by: Smule, Inc. Differential Revision: https://reviews.freebsd.org/D14340
This commit is contained in:
parent
2feb5b8dc9
commit
85ef133db3
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=329334
@ -216,7 +216,15 @@ inline int ENOLINK = 91;
|
||||
#pragma D binding "1.0" ENOLINK
|
||||
inline int EPROTO = 92;
|
||||
#pragma D binding "1.0" EPROTO
|
||||
inline int ELAST = 92;
|
||||
inline int ENOTCAPABLE = 93;
|
||||
#pragma D binding "1.13" ENOTCAPABLE
|
||||
inline int ECAPMODE = 94;
|
||||
#pragma D binding "1.13" ECAPMODE
|
||||
inline int ENOTRECOVERABLE = 95;
|
||||
#pragma D binding "1.13" ENOTRECOVERABLE
|
||||
inline int EOWNERDEAD = 96;
|
||||
#pragma D binding "1.13" EOWNERDEAD
|
||||
inline int ELAST = 96;
|
||||
#pragma D binding "1.0" ELAST
|
||||
inline int ERESTART = -1;
|
||||
#pragma D binding "1.0" ERESTART
|
||||
@ -226,3 +234,5 @@ inline int ENOIOCTL = -3;
|
||||
#pragma D binding "1.0" ENOIOCTL
|
||||
inline int EDIRIOCTL = -4;
|
||||
#pragma D binding "1.0" EDIRIOCTL
|
||||
inline int ERELOOKUP = -5;
|
||||
#pragma D binding "1.13" ERELOOKUP
|
||||
|
Loading…
Reference in New Issue
Block a user