2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 1996, 1997, 1998, 2000, 2001 by Ralf Baechle
11 #include <linux/linkage.h>
14 * Types of reference for watch_set()
21 extern asmlinkage
void __watch_set(unsigned long addr
, enum wref_type ref
);
22 extern asmlinkage
void __watch_clear(void);
23 extern asmlinkage
void __watch_reenable(void);
25 #define watch_set(addr, ref) \
27 __watch_set(addr, ref)
28 #define watch_clear() \
31 #define watch_reenable() \
35 #endif /* _ASM_WATCH_H */