watch.h 827 B

123456789101112131415161718192021222324252627282930313233
  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) 2008 David Daney
  7. */
  8. #ifndef _ASM_WATCH_H
  9. #define _ASM_WATCH_H
  10. #include <linux/bitops.h>
  11. #include <asm/mipsregs.h>
  12. void mips_install_watch_registers(struct task_struct *t);
  13. void mips_read_watch_registers(void);
  14. void mips_clear_watch_registers(void);
  15. void mips_probe_watch_registers(struct cpuinfo_mips *c);
  16. #ifdef CONFIG_HARDWARE_WATCHPOINTS
  17. #define __restore_watch(task) do { \
  18. if (unlikely(test_bit(TIF_LOAD_WATCH, \
  19. &task_thread_info(task)->flags))) { \
  20. mips_install_watch_registers(task); \
  21. } \
  22. } while (0)
  23. #else
  24. #define __restore_watch(task) do {} while (0)
  25. #endif
  26. #endif /* _ASM_WATCH_H */