1*52373Smckusick /* 2*52373Smckusick * Copyright (c) 1992 Regents of the University of California. 3*52373Smckusick * All rights reserved. 4*52373Smckusick * 5*52373Smckusick * %sccs.include.redist.c% 6*52373Smckusick * 7*52373Smckusick * @(#)proc.h 5.1 (Berkeley) 02/05/92 8*52373Smckusick */ 9*52373Smckusick 10*52373Smckusick /* 11*52373Smckusick * Machine-dependent part of the proc structure for hp300. 12*52373Smckusick */ 13*52373Smckusick struct mdproc { 14*52373Smckusick int md_flags; /* machine-dependent flags */ 15*52373Smckusick int *md_regs; /* registers on current frame */ 16*52373Smckusick }; 17*52373Smckusick 18*52373Smckusick /* md_flags */ 19*52373Smckusick #define MDP_AST 0x0001 /* async trap pending */ 20