0.1.49 - mark ITimerSpec fields public

This commit is contained in:
Jeremy Soller
2018-12-28 21:44:49 -07:00
parent 65d1ea7900
commit 6909fb1c32
2 changed files with 3 additions and 3 deletions

View File

@@ -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 <jackpot51@gmail.com>"]

View File

@@ -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 {