diff options
author | midipix <writeonce@midipix.org> | 2019-06-07 05:57:17 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-06-07 06:02:07 +0000 |
commit | 4085aa86adeaadcc3d3741605083fd2a148f2277 (patch) | |
tree | d2d6a29b23dc7aa337907aa340dfa40e6b617041 /include | |
parent | 26395dd9a6655f8d65c94651f24fd05cf0d1778a (diff) | |
download | mmglue-4085aa86adeaadcc3d3741605083fd2a148f2277.tar.bz2 mmglue-4085aa86adeaadcc3d3741605083fd2a148f2277.tar.xz |
debug interfaces: added __dbg_rbreak(), __dbg_tbreak(), and __dbg_lbreak().
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/debug.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/sys/debug.h b/include/sys/debug.h index 0d98d44..908ac2b 100644 --- a/include/sys/debug.h +++ b/include/sys/debug.h @@ -142,6 +142,11 @@ int __dbg_fork(void); int __dbg_suspend(int); int __dbg_kill(int); +/* breakpoint via remote break-in, thread context manipulation, or lpc message */ +int __dbg_rbreak(int); +int __dbg_tbreak(int); +int __dbg_lbreak(int); + /** * query one (or all) pending debug event(s) for the given debug * file descriptor: |