ptrace.h revision 13611
198944Sobrien/*
298944Sobrien * Copyright (c) 1992, 1993
398944Sobrien *	The Regents of the University of California.  All rights reserved.
498944Sobrien *
598944Sobrien * Redistribution and use in source and binary forms, with or without
698944Sobrien * modification, are permitted provided that the following conditions
798944Sobrien * are met:
898944Sobrien * 1. Redistributions of source code must retain the above copyright
998944Sobrien *    notice, this list of conditions and the following disclaimer.
1098944Sobrien * 2. Redistributions in binary form must reproduce the above copyright
1198944Sobrien *    notice, this list of conditions and the following disclaimer in the
1298944Sobrien *    documentation and/or other materials provided with the distribution.
1398944Sobrien * 3. All advertising materials mentioning features or use of this software
1498944Sobrien *    must display the following acknowledgement:
1598944Sobrien *	This product includes software developed by the University of
1698944Sobrien *	California, Berkeley and its contributors.
1798944Sobrien * 4. Neither the name of the University nor the names of its contributors
1898944Sobrien *    may be used to endorse or promote products derived from this software
1998944Sobrien *    without specific prior written permission.
2098944Sobrien *
2198944Sobrien * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2298944Sobrien * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2398944Sobrien * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2498944Sobrien * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2598944Sobrien * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2698944Sobrien * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2798944Sobrien * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2898944Sobrien * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2998944Sobrien * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3098944Sobrien * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3198944Sobrien * SUCH DAMAGE.
3298944Sobrien *
3398944Sobrien *	@(#)ptrace.h	8.1 (Berkeley) 6/11/93
3498944Sobrien * $Id: ptrace.h,v 1.2 1994/08/02 07:38:57 davidg Exp $
3598944Sobrien */
3698944Sobrien
3798944Sobrien#ifndef _MACHINE_PTRACE_H_
3898944Sobrien#define _MACHINE_PTRACE_H_
3998944Sobrien
4098944Sobrien/*
4198944Sobrien * Machine dependent trace commands.
4298944Sobrien */
4398944Sobrien#define PT_GETREGS      (PT_FIRSTMACH + 1)
4498944Sobrien#define PT_SETREGS      (PT_FIRSTMACH + 2)
4598944Sobrien#define PT_GETFPREGS    (PT_FIRSTMACH + 3)
4698944Sobrien#define PT_SETFPREGS    (PT_FIRSTMACH + 4)
4798944Sobrien
4898944Sobrien#endif
4998944Sobrien
5098944Sobrien