blob: c281bc05190b3c281a478c01999087195f151ae6 (
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/clock", {}, {}, dummy);
return 0;
}
|