/* * arch/arm/include/asm/thread_notify.h * * Copyright (C) 2006 Russell King. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #ifndef ASMARM_THREAD_NOTIFY_H #define ASMARM_THREAD_NOTIFY_H #ifdef __KERNEL__ #ifndef __ASSEMBLY__ #include <linux/notifier.h> #include <asm/thread_info.h>
static inline int thread_register_notifier(struct notifier_block *n) { extern struct atomic_notifier_head thread_notify_head; return atomic_notifier_chain_register(&thread_notify_head, n); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 26 | 100.00% | 1 | 100.00% |
Total | 26 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 25 | 100.00% | 1 | 100.00% |
Total | 25 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 31 | 100.00% | 1 | 100.00% |
Total | 31 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 120 | 96.77% | 3 | 75.00% |
Catalin Marinas | 4 | 3.23% | 1 | 25.00% |
Total | 124 | 100.00% | 4 | 100.00% |