Server IP : 104.21.38.3 / Your IP : 172.70.142.53 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/src/linux-headers-5.15.0-143-generic/arch/xtensa/include/asm/ |
Upload File : |
/* * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 2001 - 2007 Tensilica Inc. * Copyright (C) 2018 Cadence Design Systems Inc. */ #ifndef _ASM_SYSCALL_H #define _ASM_SYSCALL_H #include <linux/err.h> #include <asm/ptrace.h> #include <uapi/linux/audit.h> static inline int syscall_get_arch(struct task_struct *task) { return AUDIT_ARCH_XTENSA; } typedef void (*syscall_t)(void); extern syscall_t sys_call_table[]; static inline long syscall_get_nr(struct task_struct *task, struct pt_regs *regs) { return regs->syscall; } static inline void syscall_rollback(struct task_struct *task, struct pt_regs *regs) { /* Do nothing. */ } static inline long syscall_get_error(struct task_struct *task, struct pt_regs *regs) { /* 0 if syscall succeeded, otherwise -Errorcode */ return IS_ERR_VALUE(regs->areg[2]) ? regs->areg[2] : 0; } static inline long syscall_get_return_value(struct task_struct *task, struct pt_regs *regs) { return regs->areg[2]; } static inline void syscall_set_return_value(struct task_struct *task, struct pt_regs *regs, int error, long val) { regs->areg[2] = (long) error ? error : val; } #define SYSCALL_MAX_ARGS 6 #define XTENSA_SYSCALL_ARGUMENT_REGS {6, 3, 4, 5, 8, 9} static inline void syscall_get_arguments(struct task_struct *task, struct pt_regs *regs, unsigned long *args) { static const unsigned int reg[] = XTENSA_SYSCALL_ARGUMENT_REGS; unsigned int i; for (i = 0; i < 6; ++i) args[i] = regs->areg[reg[i]]; } static inline void syscall_set_arguments(struct task_struct *task, struct pt_regs *regs, const unsigned long *args) { static const unsigned int reg[] = XTENSA_SYSCALL_ARGUMENT_REGS; unsigned int i; for (i = 0; i < 6; ++i) regs->areg[reg[i]] = args[i]; } asmlinkage long xtensa_rt_sigreturn(void); asmlinkage long xtensa_shmat(int, char __user *, int); asmlinkage long xtensa_fadvise64_64(int, int, unsigned long long, unsigned long long); #endif