ptrace.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/kernel/ptrace.h
  3.  *
  4.  *  Copyright (C) 2000 Russell King
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  */
  10. extern void __ptrace_cancel_bpt(struct task_struct *);
  11. extern int ptrace_set_bpt(struct task_struct *);
  12. /*
  13.  * Clear a breakpoint, if one exists.
  14.  */
  15. static inline int ptrace_cancel_bpt(struct task_struct *tsk)
  16. {
  17. int nsaved = tsk->thread.debug.nsaved;
  18. if (nsaved)
  19. __ptrace_cancel_bpt(tsk);
  20. return nsaved;
  21. }