Release 4.14 arch/um/include/asm/irqflags.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __UM_IRQFLAGS_H
#define __UM_IRQFLAGS_H
extern int get_signals(void);
extern int set_signals(int enable);
extern void block_signals(void);
extern void unblock_signals(void);
#define arch_local_save_flags arch_local_save_flags
static inline unsigned long arch_local_save_flags(void)
{
return get_signals();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 14 | 100.00% | 1 | 100.00% |
Total | 14 | 100.00% | 1 | 100.00% |
#define arch_local_irq_restore arch_local_irq_restore
static inline void arch_local_irq_restore(unsigned long flags)
{
set_signals(flags);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 16 | 100.00% | 1 | 100.00% |
Total | 16 | 100.00% | 1 | 100.00% |
#define arch_local_irq_enable arch_local_irq_enable
static inline void arch_local_irq_enable(void)
{
unblock_signals();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
#define arch_local_irq_disable arch_local_irq_disable
static inline void arch_local_irq_disable(void)
{
block_signals();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
#define ARCH_IRQ_DISABLED 0
#define ARCh_IRQ_ENABLED (SIGIO|SIGVTALRM)
#include <asm-generic/irqflags.h>
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 83 | 69.75% | 1 | 25.00% |
Daniel Wagner | 27 | 22.69% | 1 | 25.00% |
Jeff Dike | 8 | 6.72% | 1 | 25.00% |
Greg Kroah-Hartman | 1 | 0.84% | 1 | 25.00% |
Total | 119 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.