Skip to content

Commit

Permalink
Auto merge of #492 - domsj:fix-eventfd-feature, r=fiveop
Browse files Browse the repository at this point in the history
fix build for eventfd feature
  • Loading branch information
homu committed Jan 11, 2017
2 parents ebb6b01 + 2fb6ef3 commit 20d05a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sys/eventfd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ use {Errno, Result};

libc_bitflags! {
flags EfdFlags: libc::c_int {
const EFD_CLOEXEC, // Since Linux 2.6.27
const EFD_NONBLOCK, // Since Linux 2.6.27
const EFD_SEMAPHORE, // Since Linux 2.6.30
EFD_CLOEXEC, // Since Linux 2.6.27
EFD_NONBLOCK, // Since Linux 2.6.27
EFD_SEMAPHORE, // Since Linux 2.6.30
}
}

Expand Down

0 comments on commit 20d05a1

Please sign in to comment.