aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2021-03-15 22:54:54 +0100
committerMarvin Borner2021-03-15 22:54:54 +0100
commitdc9f9f55cb6b38b87d8c228ae9abb4b53ebfb25c (patch)
treee4a51d5e94f963bcabe834b3ba535a8da871c42f /apps
parent665b00e7f44e5088b134d111ba1d5226c11f0ae8 (diff)
System hardening and errno impl
Diffstat (limited to 'apps')
-rw-r--r--apps/init.c10
-rw-r--r--apps/wm.c3
2 files changed, 6 insertions, 7 deletions
diff --git a/apps/init.c b/apps/init.c
index c59e3bf..5a233c1 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -1,9 +1,7 @@
// MIT License, Copyright (c) 2020 Marvin Borner
+#include <assert.h>
#include <def.h>
-#include <net.h>
-#include <print.h>
-#include <str.h>
#include <sys.h>
#include <cpu.h>
@@ -13,8 +11,8 @@ int main(int argc, char **argv)
UNUSED(argc);
UNUSED(argv);
- int wm = exec("/bin/wm", "wm", NULL);
- int test = exec("/bin/window", "test", NULL);
+ assert(exec("/bin/wm", "wm", NULL) == 0);
+ /* assert(exec("/bin/window", "test", NULL) == 0); */
- return wm + test;
+ return 0;
}
diff --git a/apps/wm.c b/apps/wm.c
index ecc7cb2..8916abf 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -2,6 +2,7 @@
#include <assert.h>
#include <def.h>
+#include <errno.h>
#include <gfx.h>
#include <gui.h>
#include <input.h>
@@ -404,7 +405,7 @@ int main(int argc, char **argv)
}
}
}
- panic("Poll/read error!\n");
+ panic("Poll/read error: %s\n", strerror(errno));
}
// TODO: Execute?