diff options
Diffstat (limited to 'src/arch/nt32')
-rw-r--r-- | src/arch/nt32/debug.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/arch/nt32/debug.c b/src/arch/nt32/debug.c index 77c8074..e99a83e 100644 --- a/src/arch/nt32/debug.c +++ b/src/arch/nt32/debug.c @@ -67,6 +67,16 @@ int __dbg_regs_store(int pfd, pid_t tid, const mcontext_t * regctx) return syscall(SYS_dbg_regs_store,pfd,tid,regctx); } +ssize_t __dbg_info_get(int pfd, pid_t tid, int type, void * buf, size_t len) +{ + return syscall(SYS_dbg_info_get,pfd,tid,type,buf,len); +} + +ssize_t __dbg_info_set(int pfd, pid_t tid, int type, const void * buf, size_t len) +{ + return syscall(SYS_dbg_info_set,pfd,tid,type,buf,len); +} + int __dbg_suspend_thread(int pfd, pid_t tid) { return syscall(SYS_dbg_suspend_thread,pfd,tid); |