Skip to content

Commit

Permalink
bump to libc 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntSushi committed Nov 5, 2015
1 parent 007671b commit b6eea08
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ license = "Unlicense/MIT"
bit-set = "0.2.0"
chan = "0.1"
lazy_static = "0.1"
libc = "0.1"
libc = "0.2"
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,12 @@ use std::thread;

use bit_set::BitSet;
use chan::Sender;
use libc::consts::os::posix88::{
use libc::{
SIGHUP, SIGINT, SIGQUIT, SIGILL, SIGABRT, SIGFPE, SIGKILL,
SIGSEGV, SIGPIPE, SIGALRM, SIGTERM,
};
use libc::funcs::posix88::signal::kill;
use libc::funcs::posix88::unistd::getpid;
use libc::kill;
use libc::getpid;

lazy_static! {
static ref HANDLERS: Mutex<HashMap<Sender<Signal>, BitSet>> = {
Expand Down

0 comments on commit b6eea08

Please sign in to comment.