1 /*        BEGIN INCLUDE FILE probe_info_constants.incl.pl1  */
 2 /*        Created: 06/25/79 W. Olin Sibert                  */
 3 
 4 dcl (RETURN_TO_CALLER init (1),                             /* return methods */
 5      RETURN_TO_FRAME init (2),
 6      RETURN_TO_CONDITION init (3),
 7      RETURN_TO_BREAK init (4)) fixed bin internal static options (constant);
 8 
 9 dcl (ENTRY_AT_CALL init (1),                                /* entered by a call to probe */
10      ENTRY_AT_BREAK init (2),                               /* entered by a call to probe$break */
11      ENTRY_AT_HALT init (3)) fixed bin internal static options (constant); /* entered by a call to probe$halt */
12 
13 dcl (CONSOLE_INPUT init (1),
14      BREAK_INPUT init (2),
15      MACRO_INPUT init (3)) fixed bin internal static options (constant);
16 
17 /*        END INCLUDE FILE probe_info_constants.incl.pl1    */