Workaround for an issue where a leftover grant is not unmapped before reap

This commit is contained in:
Jeremy Soller 2016-12-13 20:41:43 -07:00
parent 041dc7eaf4
commit 4586dbc606
3 changed files with 46 additions and 38 deletions

View file

@ -3,6 +3,7 @@
//! The Redox OS Kernel is a hybrid kernel that supports X86_64 systems and
//! provides Unix-like syscalls for primarily Rust applications
#![deny(warnings)]
#![feature(alloc)]
#![feature(arc_counts)]
#![feature(asm)]
@ -46,7 +47,6 @@ use core::sync::atomic::{AtomicUsize, ATOMIC_USIZE_INIT, Ordering};
use scheme::FileHandle;
#[macro_use]
#[macro_export]
/// Shared data structures
pub mod common;