ptrace.h revision 1945
11541Srgrimes/*-
21541Srgrimes * Copyright (c) 1984, 1993
31541Srgrimes *	The Regents of the University of California.  All rights reserved.
41541Srgrimes *
51541Srgrimes * Redistribution and use in source and binary forms, with or without
61541Srgrimes * modification, are permitted provided that the following conditions
71541Srgrimes * are met:
81541Srgrimes * 1. Redistributions of source code must retain the above copyright
91541Srgrimes *    notice, this list of conditions and the following disclaimer.
101541Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
111541Srgrimes *    notice, this list of conditions and the following disclaimer in the
121541Srgrimes *    documentation and/or other materials provided with the distribution.
131541Srgrimes * 3. All advertising materials mentioning features or use of this software
141541Srgrimes *    must display the following acknowledgement:
151541Srgrimes *	This product includes software developed by the University of
161541Srgrimes *	California, Berkeley and its contributors.
171541Srgrimes * 4. Neither the name of the University nor the names of its contributors
181541Srgrimes *    may be used to endorse or promote products derived from this software
191541Srgrimes *    without specific prior written permission.
201541Srgrimes *
211541Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
221541Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
231541Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
241541Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
251541Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
261541Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
271541Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
281541Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
291541Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
301541Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
311541Srgrimes * SUCH DAMAGE.
321541Srgrimes *
331541Srgrimes *	@(#)ptrace.h	8.2 (Berkeley) 1/4/94
341945Sdg * $Id: ptrace.h,v 1.2 1994/08/02 07:53:24 davidg Exp $
351541Srgrimes */
361541Srgrimes
371541Srgrimes#ifndef	_SYS_PTRACE_H_
381541Srgrimes#define	_SYS_PTRACE_H_
391541Srgrimes
401541Srgrimes#define	PT_TRACE_ME	0	/* child declares it's being traced */
411541Srgrimes#define	PT_READ_I	1	/* read word in child's I space */
421541Srgrimes#define	PT_READ_D	2	/* read word in child's D space */
431541Srgrimes#define	PT_READ_U	3	/* read word in child's user structure */
441541Srgrimes#define	PT_WRITE_I	4	/* write word in child's I space */
451541Srgrimes#define	PT_WRITE_D	5	/* write word in child's D space */
461541Srgrimes#define	PT_WRITE_U	6	/* write word in child's user structure */
471541Srgrimes#define	PT_CONTINUE	7	/* continue the child */
481541Srgrimes#define	PT_KILL		8	/* kill the child process */
491541Srgrimes#define	PT_STEP		9	/* single step the child */
501945Sdg
511945Sdg#ifdef notdef
521541Srgrimes#define	PT_ATTACH	10	/* trace some running process */
531541Srgrimes#define	PT_DETACH	11	/* stop tracing a process */
541945Sdg#endif
551541Srgrimes
561541Srgrimes#define	PT_FIRSTMACH	32	/* for machine-specific requests */
571541Srgrimes#include <machine/ptrace.h>	/* machine-specific requests, if any */
581541Srgrimes
591541Srgrimes#ifdef KERNEL
601541Srgrimesvoid	proc_reparent __P((struct proc *child, struct proc *newparent));
611541Srgrimes#else /* !KERNEL */
621541Srgrimes
631541Srgrimes#include <sys/cdefs.h>
641541Srgrimes
651541Srgrimes__BEGIN_DECLS
661541Srgrimesint	ptrace __P((int _request, pid_t _pid, caddr_t _addr, int _data));
671541Srgrimes__END_DECLS
681541Srgrimes
691541Srgrimes#endif /* !KERNEL */
701541Srgrimes
711541Srgrimes#endif	/* !_SYS_PTRACE_H_ */
72