Add signal support - exit on signal
This commit is contained in:
parent
b551b30300
commit
bf292bc0d1
31 changed files with 396 additions and 314 deletions
13
libstd/alloc_system/Cargo.toml
Normal file
13
libstd/alloc_system/Cargo.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
[package]
|
||||
name = "alloc_system"
|
||||
version = "0.0.0"
|
||||
authors = ["Jeremy Soller <jackpot51@gmail.com>"]
|
||||
|
||||
[dependencies.ralloc]
|
||||
git = "https://github.com/redox-os/ralloc.git"
|
||||
branch = "new_kernel"
|
||||
default-features = false
|
||||
features = ["allocator"]
|
||||
|
||||
[replace]
|
||||
"libc:0.2.17" = { git = "https://github.com/rust-lang/libc.git" }
|
6
libstd/alloc_system/src/lib.rs
Normal file
6
libstd/alloc_system/src/lib.rs
Normal file
|
@ -0,0 +1,6 @@
|
|||
#![allocator]
|
||||
#![feature(allocator)]
|
||||
#![no_std]
|
||||
|
||||
#[allocator]
|
||||
extern crate ralloc;
|
Loading…
Add table
Add a link
Reference in a new issue