From 9078b7ec09b135f091cb951ed234bf013c9c838e Mon Sep 17 00:00:00 2001 From: Michal Hanus Date: Sat, 19 Apr 2025 22:50:44 +0200 Subject: bme680 added --- .../zephyr/include/generated/syscalls/mutex.h | 75 ---------------------- 1 file changed, 75 deletions(-) delete mode 100644 nrfdemo/builddk/mcuboot/zephyr/include/generated/syscalls/mutex.h (limited to 'nrfdemo/builddk/mcuboot/zephyr/include/generated/syscalls/mutex.h') diff --git a/nrfdemo/builddk/mcuboot/zephyr/include/generated/syscalls/mutex.h b/nrfdemo/builddk/mcuboot/zephyr/include/generated/syscalls/mutex.h deleted file mode 100644 index c529133..0000000 --- a/nrfdemo/builddk/mcuboot/zephyr/include/generated/syscalls/mutex.h +++ /dev/null @@ -1,75 +0,0 @@ -/* auto-generated by gen_syscalls.py, don't edit */ - -#ifndef Z_INCLUDE_SYSCALLS_MUTEX_H -#define Z_INCLUDE_SYSCALLS_MUTEX_H - - -#include - -#ifndef _ASMLANGUAGE - -#include - -#include -#include - -#include - - -#ifdef __cplusplus -extern "C" { -#endif - -extern int z_impl_z_sys_mutex_kernel_lock(struct sys_mutex * mutex, k_timeout_t timeout); - -__pinned_func -static inline int z_sys_mutex_kernel_lock(struct sys_mutex * mutex, k_timeout_t timeout) -{ -#ifdef CONFIG_USERSPACE - if (z_syscall_trap()) { - union { uintptr_t x; struct sys_mutex * val; } parm0 = { .val = mutex }; - union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; - return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK); - } -#endif - compiler_barrier(); - return z_impl_z_sys_mutex_kernel_lock(mutex, timeout); -} - -#if defined(CONFIG_TRACING_SYSCALL) -#ifndef DISABLE_SYSCALL_TRACING - -#define z_sys_mutex_kernel_lock(mutex, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK, z_sys_mutex_kernel_lock, mutex, timeout); syscall__retval = z_sys_mutex_kernel_lock(mutex, timeout); sys_port_trace_syscall_exit(K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK, z_sys_mutex_kernel_lock, mutex, timeout, syscall__retval); syscall__retval; }) -#endif -#endif - - -extern int z_impl_z_sys_mutex_kernel_unlock(struct sys_mutex * mutex); - -__pinned_func -static inline int z_sys_mutex_kernel_unlock(struct sys_mutex * mutex) -{ -#ifdef CONFIG_USERSPACE - if (z_syscall_trap()) { - union { uintptr_t x; struct sys_mutex * val; } parm0 = { .val = mutex }; - return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK); - } -#endif - compiler_barrier(); - return z_impl_z_sys_mutex_kernel_unlock(mutex); -} - -#if defined(CONFIG_TRACING_SYSCALL) -#ifndef DISABLE_SYSCALL_TRACING - -#define z_sys_mutex_kernel_unlock(mutex) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK, z_sys_mutex_kernel_unlock, mutex); syscall__retval = z_sys_mutex_kernel_unlock(mutex); sys_port_trace_syscall_exit(K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK, z_sys_mutex_kernel_unlock, mutex, syscall__retval); syscall__retval; }) -#endif -#endif - - -#ifdef __cplusplus -} -#endif - -#endif -#endif /* include guard */ -- cgit v1.2.3