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