aboutsummaryrefslogtreecommitdiff
path: root/src/userspace
diff options
context:
space:
mode:
authorMarvin Borner2020-01-26 18:38:36 +0100
committerMarvin Borner2020-01-26 18:38:36 +0100
commitbb2a6b4d93512e8afc1b1999eb58f1f506cc27ae (patch)
treeea30b53ac6043faddd1cdb2fdea17f37178b1cc7 /src/userspace
parentb8630d78a15a69f50dac747e41e84b143dd99b08 (diff)
Magic commit
Some things work, others don't.
Diffstat (limited to 'src/userspace')
-rw-r--r--src/userspace/syscall.c4
-rw-r--r--src/userspace/syscall.h95
2 files changed, 48 insertions, 51 deletions
diff --git a/src/userspace/syscall.c b/src/userspace/syscall.c
index 132cd49..9462b10 100644
--- a/src/userspace/syscall.c
+++ b/src/userspace/syscall.c
@@ -5,9 +5,9 @@
*/
DEFN_SYSCALL0(halt, 0);
-DEFN_SYSCALL1(write, 1, char *);
+DEFN_SYSCALL1(write, 1, const char *);
-DEFN_SYSCALL1(read, 2, char *);
+DEFN_SYSCALL1(read, 2, const char *);
DEFN_SYSCALL1(writec, 3, char);
diff --git a/src/userspace/syscall.h b/src/userspace/syscall.h
index e46f453..bd402a1 100644
--- a/src/userspace/syscall.h
+++ b/src/userspace/syscall.h
@@ -3,72 +3,69 @@
#include <stdint.h>
-#define DECL_SYSCALL0(fn) int syscall_##fn()
-#define DECL_SYSCALL1(fn, p1) int syscall_##fn(p1)
-#define DECL_SYSCALL2(fn, p1, p2) int syscall_##fn(p1,p2)
-#define DECL_SYSCALL3(fn, p1, p2, p3) int syscall_##fn(p1,p2,p3)
-#define DECL_SYSCALL4(fn, p1, p2, p3, p4) int syscall_##fn(p1,p2,p3,p4)
-#define DECL_SYSCALL5(fn, p1, p2, p3, p4, p5) int syscall_##fn(p1,p2,p3,p4,p5)
+#define DECL_SYSCALL0(fn) int syscall_##fn();
+#define DECL_SYSCALL1(fn, p1) int syscall_##fn(p1);
+#define DECL_SYSCALL2(fn, p1, p2) int syscall_##fn(p1,p2);
+#define DECL_SYSCALL3(fn, p1, p2, p3) int syscall_##fn(p1,p2,p3);
+#define DECL_SYSCALL4(fn, p1, p2, p3, p4) int syscall_##fn(p1,p2,p3,p4);
+#define DECL_SYSCALL5(fn, p1, p2, p3, p4, p5) int syscall_##fn(p1,p2,p3,p4,p5);
#define DEFN_SYSCALL0(fn, num) \
- int syscall_##fn() { \
- int a; __asm__ __volatile__("int $0x80" : "=a" (a) : "0" (num)); \
- return a; \
- }
+int syscall_##fn() \
+{ \
+ int a; \
+ asm volatile("int $0x80" : "=a" (a) : "0" (num)); \
+ return a; \
+}
#define DEFN_SYSCALL1(fn, num, P1) \
- int syscall_##fn(P1 p1) { \
- int __res; __asm__ __volatile__("push %%ebx; movl %2,%%ebx; int $0x80; pop %%ebx" \
- : "=a" (__res) \
- : "0" (num), "r" ((int)(p1)) \
- : "memory"); \
- return __res; \
- }
+int syscall_##fn(P1 p1) \
+{ \
+ int a; \
+ asm volatile("int $0x80" : "=a" (a) : "0" (num), "b" ((int)p1)); \
+ return a; \
+}
#define DEFN_SYSCALL2(fn, num, P1, P2) \
- int syscall_##fn(P1 p1, P2 p2) { \
- int __res; __asm__ __volatile__("push %%ebx; movl %2,%%ebx; int $0x80; pop %%ebx" \
- : "=a" (__res) \
- : "0" (num), "r" ((int)(p1)), "c"((int)(p2)) \
- : "memory"); \
- return __res; \
- }
+int syscall_##fn(P1 p1, P2 p2) \
+{ \
+ int a; \
+ asm volatile("int $0x80" : "=a" (a) : "0" (num), "b" ((int)p1), "c" ((int)p2)); \
+ return a; \
+}
#define DEFN_SYSCALL3(fn, num, P1, P2, P3) \
- int syscall_##fn(P1 p1, P2 p2, P3 p3) { \
- int __res; __asm__ __volatile__("push %%ebx; movl %2,%%ebx; int $0x80; pop %%ebx" \
- : "=a" (__res) \
- : "0" (num), "b" ((int)(p1)), "c"((p2)), "d"((int)(p3)) \
- : "memory"); \
- return __res; \
- }
+int syscall_##fn(P1 p1, P2 p2, P3 p3) \
+{ \
+ int a; \
+ asm volatile("int $0x80" : "=a" (a) : "0" (num), "b" ((int)p1), "c" ((int)p2), "d"((int)p3)); \
+ return a; \
+}
#define DEFN_SYSCALL4(fn, num, P1, P2, P3, P4) \
- int syscall_##fn(P1 p1, P2 p2, P3 p3, P4 p4) { \
- int __res; __asm__ __volatile__("push %%ebx; movl %2,%%ebx; int $0x80; pop %%ebx" \
- : "=a" (__res) \
- : "0" (num), "b" ((int)(p1)), "c"((int)(p2)), "d"((int)(p3)), "S"((int)(p4)) \
- : "memory"); \
- return __res; \
- }
-
-#define DEFN_SYSCALL5(fn, num, P1, P2, P3, P4, P5) \
- int syscall_##fn(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) { \
- int __res; __asm__ __volatile__("push %%ebx; movl %2,%%ebx; int $0x80; pop %%ebx" \
- : "=a" (__res) \
- : "0" (num), "b" ((int)(p1)), "c"((int)(p2)), "d"((int)(p3)), "S"((int)(p4)), "D"((int)(p5)) \
- : "memory"); \
- return __res; \
- }
+int syscall_##fn(P1 p1, P2 p2, P3 p3, P4 p4) \
+{ \
+ int a; \
+ asm volatile("int $0x80" : "=a" (a) : "0" (num), "b" ((int)p1), "c" ((int)p2), "d" ((int)p3), "S" ((int)p4)); \
+ return a; \
+}
+
+#define DEFN_SYSCALL5(fn, num) \
+int syscall_##fn(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) \
+{ \
+ int a; \
+ asm volatile("int $0x80" : "=a" (a) : "0" (num), "b" ((int)p1), "c" ((int)p2), "d" ((int)p3), "S" ((int)p4), "D" ((int)p5)); \
+ return a; \
+}
/**
* DECLARATIONS
*/
DECL_SYSCALL0(halt);
-DECL_SYSCALL1(write, char *);
+DECL_SYSCALL1(write, const char *);
-DECL_SYSCALL1(read, char *);
+DECL_SYSCALL1(read, const char *);
DECL_SYSCALL1(writec, char);