aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-03-26 17:54:55 -0400
committerIan Moffett <ian@osmora.org>2024-03-26 17:54:55 -0400
commitb1515aa2c706c2808b85ff4dcb9fab5575bfe478 (patch)
treeda6faf1941c2108bdb569ebeded8fdaebed27855 /sys
parent43e2ee7fec3a9464a9c2dcbb9ebac22ada8ce6bf (diff)
kernel: Add invalid_uaddr() helper
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r--sys/include/sys/system.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/include/sys/system.h b/sys/include/sys/system.h
index c2e47c2..4e34c30 100644
--- a/sys/include/sys/system.h
+++ b/sys/include/sys/system.h
@@ -32,6 +32,15 @@
#include <sys/types.h>
+/*
+ * TODO: Get rid of this when signals are implemented,
+ * it is best to segfault the program when this
+ * happens.
+ */
+#define invalid_uaddr(UADDR) \
+ panic("invalid uaddr 0x%p (pid=%d)\n", \
+ UADDR, this_td()->pid);
+
#if defined(_KERNEL)
int copyin(uintptr_t uaddr, void *kaddr, size_t len);
int copyout(const void *kaddr, uintptr_t uaddr, size_t len);