document os

master
edef 2015-04-16 07:30:53 -04:00
parent f3ee07416d
commit a389576d0f
1 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,10 @@
// Copyright (c) 2015, edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
//! This module provides stacks using the operating system's
//! anonymous memory mapping facility, usually `mmap`.
//! The stacks it provides come with a guard page, which is not included
//! in the stack limit.
extern crate std;
use core::prelude::*;
use self::std::io::Error as IoError;