Release 4.10 arch/um/include/asm/irqflags.h
#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 | 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 | 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 | 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 | 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 | al viro | 83 | 70.34% | 1 | 33.33% |
daniel wagner | daniel wagner | 27 | 22.88% | 1 | 33.33% |
jeff dike | jeff dike | 8 | 6.78% | 1 | 33.33% |
| Total | 118 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.