The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/include/asm-mips64/watch.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*
    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
    4  * for more details.
    5  *
    6  * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 by Ralf Baechle
    7  */
    8 #ifndef _ASM_WATCH_H
    9 #define _ASM_WATCH_H
   10 
   11 #include <linux/linkage.h>
   12 
   13 /*
   14  * Types of reference for watch_set()
   15  */
   16 enum wref_type {
   17         wr_save = 1,
   18         wr_load = 2
   19 };
   20 
   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);
   24 
   25 #define watch_set(addr, ref)                                    \
   26         if (cpu_has_watch)                                      \
   27                 __watch_set(addr, ref)
   28 #define watch_clear()                                           \
   29         if (cpu_has_watch)                                      \
   30                 __watch_clear()
   31 #define watch_reenable()                                        \
   32         if (cpu_has_watch)                                      \
   33                 __watch_reenable()
   34 
   35 #endif /* _ASM_WATCH_H  */

Cache object: fa9bf57a3cbab47bb50f2e850d17b994


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.