summaryrefslogtreecommitdiff
path: root/src/sched.rs
diff options
context:
space:
mode:
authorSebastian Lauwers <sebastian.lauwers@gmail.com>2015-02-21 00:09:43 +0100
committerCarl Lerche <me@carllerche.com>2015-02-20 15:17:15 -0800
commit6637e4dc70e46feedc6e31366a0441a345c8721d (patch)
tree3e357016a4b56825a420527e36c207104ddd18ef /src/sched.rs
parent977bf95a07239b7357fd41ba07777c8ce0ba89aa (diff)
downloadnix-6637e4dc70e46feedc6e31366a0441a345c8721d.zip
Remove deprecated suffixes for isize
Diffstat (limited to 'src/sched.rs')
-rw-r--r--src/sched.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sched.rs b/src/sched.rs
index a25d859f..c8d719ed 100644
--- a/src/sched.rs
+++ b/src/sched.rs
@@ -32,8 +32,8 @@ pub static CLONE_IO: CloneFlags = 0x80000000;
#[cfg(target_arch = "x86_64")]
mod cpuset_attribs {
use super::CpuMask;
- pub const CPU_SETSIZE: usize = 1024us;
- pub const CPU_MASK_BITS: usize = 64us;
+ pub const CPU_SETSIZE: usize = 1024;
+ pub const CPU_MASK_BITS: usize = 64;
#[inline]
pub fn set_cpu_mask_flag(cur: CpuMask, bit: usize) -> CpuMask {