From f3f8ee431e6ea67146706dfbab7a2ef22420964b Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 5 Oct 2016 13:55:45 -0700 Subject: [PATCH] signal: Remove SIGKILL reexport --- src/unix.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix.rs b/src/unix.rs index 204e152dd..b5067c363 100644 --- a/src/unix.rs +++ b/src/unix.rs @@ -96,7 +96,7 @@ struct SignalState { tasks: Vec<(RefCell>, mio::SetReadiness)>, } -pub use self::libc::{SIGINT, SIGKILL, SIGTERM, SIGUSR1, SIGUSR2}; +pub use self::libc::{SIGINT, SIGTERM, SIGUSR1, SIGUSR2}; pub use self::libc::{SIGHUP, SIGQUIT, SIGPIPE, SIGALRM, SIGTRAP}; impl Signal {