1 /* BEGIN INCLUDE FILE ... cond_info.incl.pl1 2 coded by M. Weaver 12 July 1973 */ 3 4 2 mcptr ptr, /* ptr to machine conditions at time of fault */ 5 2 version fixed bin, /* version of this structure (now=1) */ 6 2 condition_name char(32) var, /* name of condition */ 7 2 infoptr ptr, /* ptr to software info structure */ 8 2 wcptr ptr, /* ptr to wall crossing machine conditions */ 9 2 loc_ptr ptr, /* ptr to location where condition occurred */ 10 2 flags aligned, 11 3 crawlout bit(1) unal, /* = "1"b if condition occurred in inner ring */ 12 3 pad1 bit(35) unal, 13 2 pad_word bit(36) aligned, 14 2 user_loc_ptr ptr, /* ptr to last non-support loc before condition */ 15 2 pad (4) bit(36) aligned; 16 17 /* END INCLUDE FILE ... cond_info.incl.pl1 */