Release 4.15 arch/mips/include/asm/compat-signal.h
/* SPDX-License-Identifier: GPL-2.0 */
#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 <linux/uaccess.h>
static inline int __copy_conv_sigset_to_user(compat_sigset_t __user *d,
const sigset_t *s)
{
BUILD_BUG_ON(sizeof(*d) != sizeof(*s));
BUILD_BUG_ON(_NSIG_WORDS != 2);
return put_compat_sigset(d, s, sizeof(*d));
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 46 | 86.79% | 1 | 50.00% |
Al Viro | 7 | 13.21% | 1 | 50.00% |
Total | 53 | 100.00% | 2 | 100.00% |
static inline int __copy_conv_sigset_from_user(sigset_t *d,
const compat_sigset_t __user *s)
{
return get_compat_sigset(d, s);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 23 | 92.00% | 1 | 50.00% |
Al Viro | 2 | 8.00% | 1 | 50.00% |
Total | 25 | 100.00% | 2 | 100.00% |
#endif /* __ASM_COMPAT_SIGNAL_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 95 | 89.62% | 3 | 50.00% |
Al Viro | 9 | 8.49% | 1 | 16.67% |
Greg Kroah-Hartman | 1 | 0.94% | 1 | 16.67% |
Linus Torvalds | 1 | 0.94% | 1 | 16.67% |
Total | 106 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.