/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License (the "License"). * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. * See the License for the specific language governing permissions * and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at usr/src/OPENSOLARIS.LICENSE. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ /* * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ #ifndef _SYS_PCB_H #define _SYS_PCB_H #include #ifdef __cplusplus extern "C" { #endif /* * Sun software process control block */ #ifndef _ASM typedef struct pcb { int pcb_flags; /* various state flags; cleared on fork */ uint32_t pcb_trap0addr; /* addr of user level trap 0 handler */ /* deliberately restricted to 32 bits */ /* because only used for SunOS programs */ uint_t pcb_instr; /* /proc: instruction at stop */ enum { XREGNONE = 0, XREGPRESENT, XREGMODIFIED } pcb_xregstat; /* state of contents of pcb_xregs */ struct rwindow pcb_xregs; /* locals+ins fetched/set via /proc */ int pcb_step; /* used while single-stepping */ caddr_t pcb_tracepc; /* used while single-stepping */ } pcb_t; #endif /* ! _ASM */ /* pcb_flags */ #define PRSTOP_CALLED 0x01 /* prstop() has been called for this lwp */ #define INSTR_VALID 0x02 /* value in pcb_instr is valid (/proc) */ #define NORMAL_STEP 0x04 /* normal debugger requested single-step */ #define WATCH_STEP 0x08 /* single-stepping in watchpoint emulation */ #define CPC_OVERFLOW 0x10 /* performance counters overflowed */ #define ASYNC_HWERR 0x20 /* asynchronous h/w error (e.g. parity error) */ #define ASYNC_BERR 0x40 /* asynchronous bus error */ #define ASYNC_BTO 0x80 /* asynchronous bus timeout */ #define ASYNC_MOD_ILL 0x100 /* async module error w/ illegal instr/cycle */ #define ASYNC_MOD_SEGV 0x200 /* async module error w/ address violation */ #define ASYNC_ERR (ASYNC_HWERR | ASYNC_BERR | ASYNC_BTO | \ ASYNC_MOD_ILL | ASYNC_MOD_SEGV) /* pcb_step */ #define STEP_NONE 0 /* no single step */ #define STEP_REQUESTED 1 /* arrange to single-step the lwp */ #define STEP_ACTIVE 2 /* actively patching addr, set active flag */ #define STEP_WASACTIVE 3 /* wrap up after taking single-step fault */ #ifdef __cplusplus } #endif #endif /* _SYS_PCB_H */