summaryrefslogtreecommitdiffstats
path: root/abi/syscall.h
diff options
context:
space:
mode:
Diffstat (limited to 'abi/syscall.h')
-rw-r--r--abi/syscall.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/abi/syscall.h b/abi/syscall.h
new file mode 100644
index 0000000..95cd4a5
--- /dev/null
+++ b/abi/syscall.h
@@ -0,0 +1,29 @@
+#ifndef JOVE_ABI_SYSCALL_H
+#define JOVE_ABI_SYSCALL_H 1
+
+typedef struct syscall {
+ int id;
+} syscall_t;
+
+struct syscall_log {
+ syscall_t syscall;
+ const char *message;
+};
+
+enum
+{
+ SYSCALL_LOG = 0,
+ SYSCALL_COUNT
+};
+
+#define _SYSCALL(data) __asm__ volatile("movq %0, %%rdi\nsyscall":: "r"(data))
+
+void _syscall_log(const char *message) {
+ struct syscall_log syscall_data = {
+ .syscall = (syscall_t){ .id = SYSCALL_LOG },
+ .message = message
+ };
+ _SYSCALL(&syscall_data);
+}
+
+#endif