Create example userspace scheme. Remove kernel duplication of syscalls, use syscall crate instead

This commit is contained in:
Jeremy Soller
2016-09-20 16:23:28 -06:00
parent 62f2f83ec8
commit a5cfb8f363
4 changed files with 172 additions and 66 deletions
+1
View File
@@ -1,5 +1,6 @@
use core::{fmt, result};
#[derive(Eq, PartialEq)]
pub struct Error {
pub errno: isize,
}