mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
10 lines
224 B
C
10 lines
224 B
C
|
#ifndef _LINUX_BH_H
|
||
|
#define _LINUX_BH_H
|
||
|
|
||
|
extern void local_bh_disable(void);
|
||
|
extern void _local_bh_enable(void);
|
||
|
extern void local_bh_enable(void);
|
||
|
extern void local_bh_enable_ip(unsigned long ip);
|
||
|
|
||
|
#endif /* _LINUX_BH_H */
|