From 6909fb1c32d2c4dd75c0967ab06b894c8f7ed308 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 28 Dec 2018 21:44:49 -0700 Subject: [PATCH] 0.1.49 - mark ITimerSpec fields public --- Cargo.toml | 2 +- src/data.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 04fcfe5..e1448c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redox_syscall" -version = "0.1.48" +version = "0.1.49" description = "A Rust library to access raw Redox system calls" license = "MIT" authors = ["Jeremy Soller "] diff --git a/src/data.rs b/src/data.rs index 8b3419d..89e3b9e 100644 --- a/src/data.rs +++ b/src/data.rs @@ -29,8 +29,8 @@ impl DerefMut for Event { #[derive(Copy, Clone, Debug, Default)] #[repr(C)] pub struct ITimerSpec { - it_interval: TimeSpec, - it_value: TimeSpec, + pub it_interval: TimeSpec, + pub it_value: TimeSpec, } impl Deref for ITimerSpec {