We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d04e27c commit 15b033aCopy full SHA for 15b033a
1 file changed
rust/kernel/error.rs
@@ -126,6 +126,9 @@ impl Error {
126
/// Math result not representable.
127
pub const ERANGE: Self = Error(-(bindings::ERANGE as i32));
128
129
+ /// Cannot assign requested address.
130
+ pub const EADDRNOTAVAIL: Self = Error(-(bindings::EADDRNOTAVAIL as i32));
131
+
132
/// Restart the system call.
133
pub const ERESTARTSYS: Self = Error(-(bindings::ERESTARTSYS as i32));
134
0 commit comments