ptrace.h revision 1.3
11.1Sderaadt/* 21.1Sderaadt * Copyright (c) 1992, 1993 31.1Sderaadt * The Regents of the University of California. All rights reserved. 41.1Sderaadt * 51.1Sderaadt * This software was developed by the Computer Systems Engineering group 61.1Sderaadt * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and 71.1Sderaadt * contributed to Berkeley. 81.1Sderaadt * 91.1Sderaadt * All advertising materials mentioning features or use of this software 101.1Sderaadt * must display the following acknowledgement: 111.1Sderaadt * This product includes software developed by the University of 121.1Sderaadt * California, Lawrence Berkeley Laboratory. 131.1Sderaadt * 141.1Sderaadt * Redistribution and use in source and binary forms, with or without 151.1Sderaadt * modification, are permitted provided that the following conditions 161.1Sderaadt * are met: 171.1Sderaadt * 1. Redistributions of source code must retain the above copyright 181.1Sderaadt * notice, this list of conditions and the following disclaimer. 191.1Sderaadt * 2. Redistributions in binary form must reproduce the above copyright 201.1Sderaadt * notice, this list of conditions and the following disclaimer in the 211.1Sderaadt * documentation and/or other materials provided with the distribution. 221.1Sderaadt * 3. All advertising materials mentioning features or use of this software 231.1Sderaadt * must display the following acknowledgement: 241.1Sderaadt * This product includes software developed by the University of 251.1Sderaadt * California, Berkeley and its contributors. 261.1Sderaadt * 4. Neither the name of the University nor the names of its contributors 271.1Sderaadt * may be used to endorse or promote products derived from this software 281.1Sderaadt * without specific prior written permission. 291.1Sderaadt * 301.1Sderaadt * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 311.1Sderaadt * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 321.1Sderaadt * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 331.1Sderaadt * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 341.1Sderaadt * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 351.1Sderaadt * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 361.1Sderaadt * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 371.1Sderaadt * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 381.1Sderaadt * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 391.1Sderaadt * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 401.1Sderaadt * SUCH DAMAGE. 411.1Sderaadt * 421.1Sderaadt * @(#)ptrace.h 8.1 (Berkeley) 6/11/93 431.1Sderaadt * 441.1Sderaadt * from: Header: ptrace.h,v 1.6 92/11/26 02:04:43 torek Exp (LBL) 451.3Spk * $Id: ptrace.h,v 1.3 1994/02/11 16:51:36 pk Exp $ 461.1Sderaadt */ 471.1Sderaadt 481.1Sderaadt/* 491.1Sderaadt * SPARC-dependent ptrace definitions. 501.1Sderaadt */ 511.1Sderaadt#define PT_GETREGS (PT_FIRSTMACH + 0) 521.1Sderaadt#define PT_SETREGS (PT_FIRSTMACH + 1) 531.3Spk#define PT_GETFPREGS (PT_FIRSTMACH + 2) 541.3Spk#define PT_SETFPREGS (PT_FIRSTMACH + 3) 55