We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc33ea8 commit 7d5f81dCopy full SHA for 7d5f81d
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