152373Smckusick /* 2*63359Sbostic * Copyright (c) 1992, 1993 3*63359Sbostic * The Regents of the University of California. All rights reserved. 452373Smckusick * 552373Smckusick * %sccs.include.redist.c% 652373Smckusick * 7*63359Sbostic * @(#)proc.h 8.1 (Berkeley) 06/11/93 852373Smckusick */ 952373Smckusick 1052373Smckusick /* 1152373Smckusick * Machine-dependent part of the proc structure for hp300. 1252373Smckusick */ 1352373Smckusick struct mdproc { 1452373Smckusick int md_flags; /* machine-dependent flags */ 1552373Smckusick int *md_regs; /* registers on current frame */ 1652373Smckusick }; 1752373Smckusick 1852373Smckusick /* md_flags */ 1952373Smckusick #define MDP_AST 0x0001 /* async trap pending */ 20