Fix implementation of clone and exec. Now the init process can load and execute the pci driver

This commit is contained in:
Jeremy Soller 2016-09-15 08:35:07 -06:00
parent b01a918556
commit 33e098c124
9 changed files with 233 additions and 78 deletions

View file

@ -1,4 +1,4 @@
use std::{env, thread};
use std::env;
use std::fs::File;
use std::io::{BufRead, BufReader};
use std::process::Command;
@ -47,8 +47,4 @@ pub fn main() {
}
}
}
loop {
thread::yield_now();
}
}