149729Smckusick /* 249729Smckusick * Copyright (c) 1991 Regents of the University of California. 349729Smckusick * All rights reserved. 449729Smckusick * 549729Smckusick * %sccs.include.redist.c% 649729Smckusick * 7*52386Smckusick * @(#)proc.h 7.3 (Berkeley) 02/05/92 849729Smckusick */ 949729Smckusick 1049729Smckusick /* 1149729Smckusick * Machine-dependent part of the proc structure for hp300. 1249729Smckusick */ 1349729Smckusick struct mdproc { 14*52386Smckusick int *md_regs; /* registers on current frame */ 1549729Smckusick int md_flags; /* machine-dependent flags */ 1649729Smckusick }; 1749729Smckusick 1849729Smckusick /* md_flags */ 1949729Smckusick #define MDP_AST 0x0001 /* async trap pending */ 20