1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

Prototype the ptrace_*()

This commit is contained in:
David E. O'Brien 2001-08-16 19:57:36 +00:00
parent 0e513252b5
commit e113a479b2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=81797

View File

@ -47,4 +47,8 @@
#define FIX_SSTEP(p) ptrace_clear_single_step(p)
int ptrace_clear_single_step(struct proc *_p);
int ptrace_set_pc(struct proc *_p, unsigned long _addr);
int ptrace_single_step(struct proc *_p);
#endif