1 /* BEGIN INCLUDE FILE...pl1_stack_frame.incl.pl1 */ 2 /* This is an overlay for a stack frame giving pointers 3 * set and used by pl/I programs only. 4 */ 5 6 dcl 1 pl1_stack_frame based aligned, 7 2 pad(32) fixed bin, 8 2 display_ptr ptr, /* pointer to stack frame of parent block */ 9 2 descriptor_ptr ptr, /* pointer to argument descriptor list */ 10 2 linkage_ptr ptr, /* pointer to base of linkage section */ 11 2 text_base_ptr ptr; /* pointer to base of text */ 12 13 /* END INCLUDE FILE ... pl1_stack_frame.incl.pl1 */