Skip to content

DragonflyBSD: Remove unused Errno's #989

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 6, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 3 additions & 16 deletions src/errno.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#[cfg(not(target_os = "dragonfly"))]
use libc;
use libc::c_int;
use libc::{c_int, c_void};
use std::{fmt, io, error};
use {Error, Result};

Expand Down Expand Up @@ -103,8 +103,8 @@ impl ErrnoSentinel for i64 {
fn sentinel() -> Self { -1 }
}

impl ErrnoSentinel for *mut libc::c_void {
fn sentinel() -> Self { (-1 as isize) as *mut libc::c_void }
impl ErrnoSentinel for *mut c_void {
fn sentinel() -> Self { (-1 as isize) as *mut c_void }
}

impl error::Error for Errno {
Expand Down Expand Up @@ -521,9 +521,6 @@ fn desc(errno: Errno) -> &'static str {
#[cfg(target_os = "openbsd")]
EIPSEC => "IPsec processing failure",

#[cfg(target_os = "dragonfly")]
EUNUSED94 | EUNUSED95 | EUNUSED96 | EUNUSED97 | EUNUSED98 => "Unused",

#[cfg(target_os = "dragonfly")]
EASYNC => "Async",
}
Expand Down Expand Up @@ -1373,11 +1370,6 @@ mod consts {
ENOLINK = libc::ENOLINK,
EPROTO = libc::EPROTO,
ENOMEDIUM = libc::ENOMEDIUM,
EUNUSED94 = libc::EUNUSED94,
EUNUSED95 = libc::EUNUSED95,
EUNUSED96 = libc::EUNUSED96,
EUNUSED97 = libc::EUNUSED97,
EUNUSED98 = libc::EUNUSED98,
EASYNC = libc::EASYNC,
}

Expand Down Expand Up @@ -1485,11 +1477,6 @@ mod consts {
libc::ENOLINK => ENOLINK,
libc::EPROTO => EPROTO,
libc::ENOMEDIUM => ENOMEDIUM,
libc::EUNUSED94 => EUNUSED94,
libc::EUNUSED95 => EUNUSED95,
libc::EUNUSED96 => EUNUSED96,
libc::EUNUSED97 => EUNUSED97,
libc::EUNUSED98 => EUNUSED98,
libc::EASYNC => EASYNC,
_ => UnknownErrno,
}
Expand Down