summaryrefslogtreecommitdiff
path: root/nrfdemo/builddk/mcuboot/zephyr/include/generated/syscalls/random.h
diff options
context:
space:
mode:
authorMichal Hanus <mikehanus@protonmail.com>2025-04-14 22:04:32 +0200
committerMichal Hanus <mikehanus@protonmail.com>2025-04-14 22:04:32 +0200
commit2e13c372f1419f08dab7797b244681f889dd9bcf (patch)
tree995a31c40f13068c4135c213e938e0a2a9ed05a3 /nrfdemo/builddk/mcuboot/zephyr/include/generated/syscalls/random.h
parent620dfd94019f3c7e3022fa5a5fb9c9b51491062d (diff)
nrfdemo
Diffstat (limited to 'nrfdemo/builddk/mcuboot/zephyr/include/generated/syscalls/random.h')
-rw-r--r--nrfdemo/builddk/mcuboot/zephyr/include/generated/syscalls/random.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/nrfdemo/builddk/mcuboot/zephyr/include/generated/syscalls/random.h b/nrfdemo/builddk/mcuboot/zephyr/include/generated/syscalls/random.h
new file mode 100644
index 0000000..839bd2f
--- /dev/null
+++ b/nrfdemo/builddk/mcuboot/zephyr/include/generated/syscalls/random.h
@@ -0,0 +1,77 @@
+/* auto-generated by gen_syscalls.py, don't edit */
+
+#ifndef Z_INCLUDE_SYSCALLS_RANDOM_H
+#define Z_INCLUDE_SYSCALLS_RANDOM_H
+
+
+#include <zephyr/tracing/tracing_syscall.h>
+
+#ifndef _ASMLANGUAGE
+
+#include <stdarg.h>
+
+#include <syscall_list.h>
+#include <zephyr/syscall.h>
+
+#include <zephyr/linker/sections.h>
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+extern void z_impl_sys_rand_get(void * dst, size_t len);
+
+__pinned_func
+static inline void sys_rand_get(void * dst, size_t len)
+{
+#ifdef CONFIG_USERSPACE
+ if (z_syscall_trap()) {
+ union { uintptr_t x; void * val; } parm0 = { .val = dst };
+ union { uintptr_t x; size_t val; } parm1 = { .val = len };
+ (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_RAND_GET);
+ return;
+ }
+#endif
+ compiler_barrier();
+ z_impl_sys_rand_get(dst, len);
+}
+
+#if defined(CONFIG_TRACING_SYSCALL)
+#ifndef DISABLE_SYSCALL_TRACING
+
+#define sys_rand_get(dst, len) do { sys_port_trace_syscall_enter(K_SYSCALL_SYS_RAND_GET, sys_rand_get, dst, len); sys_rand_get(dst, len); sys_port_trace_syscall_exit(K_SYSCALL_SYS_RAND_GET, sys_rand_get, dst, len); } while(false)
+#endif
+#endif
+
+
+extern int z_impl_sys_csrand_get(void * dst, size_t len);
+
+__pinned_func
+static inline int sys_csrand_get(void * dst, size_t len)
+{
+#ifdef CONFIG_USERSPACE
+ if (z_syscall_trap()) {
+ union { uintptr_t x; void * val; } parm0 = { .val = dst };
+ union { uintptr_t x; size_t val; } parm1 = { .val = len };
+ return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_CSRAND_GET);
+ }
+#endif
+ compiler_barrier();
+ return z_impl_sys_csrand_get(dst, len);
+}
+
+#if defined(CONFIG_TRACING_SYSCALL)
+#ifndef DISABLE_SYSCALL_TRACING
+
+#define sys_csrand_get(dst, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CSRAND_GET, sys_csrand_get, dst, len); syscall__retval = sys_csrand_get(dst, len); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CSRAND_GET, sys_csrand_get, dst, len, syscall__retval); syscall__retval; })
+#endif
+#endif
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+#endif /* include guard */