summaryrefslogtreecommitdiff
path: root/src/user/app/init/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/app/init/main.cpp')
-rw-r--r--src/user/app/init/main.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/user/app/init/main.cpp b/src/user/app/init/main.cpp
deleted file mode 100644
index 759d804..0000000
--- a/src/user/app/init/main.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-#include <tce/syscall.h>
-#include <IO/IOStream.h>
-#include <String.h>
-
-int Main(String *args) {
- FILE home_term = libc::open("/.ui/home", 0);
- if (home_term < 0) return -1;
-
- stdio << "(init) Trivial/Computing Environment says hello. Press super to go home.\n";
-
- for (int i = 0; args[i]; i++) {
- if (i == 0) continue;
- stdio.printf("(init) Spawning %s...\n", args[i].c_str());
- int pid = libc::run(args[i].c_str(), 0, home_term);
- if (pid < 0) {
- stdio << "(init) Error. Sorry.\n";
- } else {
- libc::waitpid(pid, 1);
- }
- }
- stdio << "(init) Goodbye.\n";
- return 0;
-}