1 /* BEGIN INCLUDE FILE ... stack_frame_exit_str.incl.pl1 */ 2 3 dcl 1 stack_frame_exit_str aligned based, 4 2 bad_frame bit (1) unal, /* frame supplied was not legal */ 5 2 exists_ppr bit (1) unal, /* the ppr from machine conditions is used */ 6 2 ppr_is_owner bit (1) unal, /* the owner of this frame took the fault */ 7 2 ppr_is_ops bit (1) unal, /* the fault occured in pl1 operators */ 8 2 caller_is_owner bit (1) unal, /* fault in ops, and ops called by owner */ 9 2 entry_ptr_invalid bit (1) unal, /* was null or otherwise bad */ 10 2 ret_ptr_is_ops bit (1) unal, /* return ptr in frame points to ops */ 11 2 called_begin_block bit (1) unal, /* this frame "called" a non-quick begin block */ 12 2 pad bit (28) unal; 13 14 /* END INCLUDE FILE ... stack_frame_exit_str.incl.pl1 */