123456789101112131415161718192021222324252627 |
- //! **Ralloc:** The memory efficient allocator.
- //!
- //! This crates define the user space allocator for Redox, which emphasizes performance and memory
- //! efficiency.
- #![allocator]
- #![no_std]
- #![feature(allocator)]
- #![feature(const_fn)]
- #![feature(core_intrinsics)]
- #![feature(stmt_expr_attributes)]
- #![feature(unique)]
- #![warn(missing_docs)]
- #[cfg(target_os = "redox")]
- extern crate system;
- #[cfg(not(target_os = "redox"))]
- #[macro_use]
- extern crate syscall;
- pub mod allocator;
- pub mod block;
- pub mod bookkeeper;
- pub mod fail;
- pub mod sys;
|