blob: ca137a42eb2f9bc33b6d9a4e8ee66abde54e4adf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include <euler/syscall.hpp>
//this does not keep track of the processes or whether they have started
//successfully, nor does it set their argc, argv, stdin, stdout, or stderr.
int main(int, char **) {
euler::syscall::process_handle dummy;
euler::syscall::start_process("/bin/compositor", {}, {}, dummy);
euler::syscall::start_process("/bin/hello", {}, {}, dummy);
return 0;
}
|