%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/src/linux-headers-4.4.0-112/arch/mips/include/asm/ |
Upload File : |
#ifndef __ASM_COMPAT_SIGNAL_H #define __ASM_COMPAT_SIGNAL_H #include <linux/bug.h> #include <linux/compat.h> #include <linux/compiler.h> #include <asm/signal.h> #include <asm/siginfo.h> #include <asm/uaccess.h> static inline int __copy_conv_sigset_to_user(compat_sigset_t __user *d, const sigset_t *s) { int err; BUG_ON(sizeof(*d) != sizeof(*s)); BUG_ON(_NSIG_WORDS != 2); err = __put_user(s->sig[0], &d->sig[0]); err |= __put_user(s->sig[0] >> 32, &d->sig[1]); err |= __put_user(s->sig[1], &d->sig[2]); err |= __put_user(s->sig[1] >> 32, &d->sig[3]); return err; } static inline int __copy_conv_sigset_from_user(sigset_t *d, const compat_sigset_t __user *s) { int err; union sigset_u { sigset_t s; compat_sigset_t c; } *u = (union sigset_u *) d; BUG_ON(sizeof(*d) != sizeof(*s)); BUG_ON(_NSIG_WORDS != 2); #ifdef CONFIG_CPU_BIG_ENDIAN err = __get_user(u->c.sig[1], &s->sig[0]); err |= __get_user(u->c.sig[0], &s->sig[1]); err |= __get_user(u->c.sig[3], &s->sig[2]); err |= __get_user(u->c.sig[2], &s->sig[3]); #endif #ifdef CONFIG_CPU_LITTLE_ENDIAN err = __get_user(u->c.sig[0], &s->sig[0]); err |= __get_user(u->c.sig[1], &s->sig[1]); err |= __get_user(u->c.sig[2], &s->sig[2]); err |= __get_user(u->c.sig[3], &s->sig[3]); #endif return err; } #endif /* __ASM_COMPAT_SIGNAL_H */