1 /* BEGIN INCLUDE FILE ... cpm_generate_call_flags.incl.pl1 */
 2 
 3 /****^  HISTORY COMMENTS:
 4   1) change(86-08-12,Kissel), approve(86-08-12,MCR7473),
 5      audit(86-10-08,Fawcett), install(86-11-03,MR12.0-1206):
 6      Written to support control point management in March 1985 by G. Palter.
 7                                                    END HISTORY COMMENTS */
 8 
 9 /* format: style3,linecom */
10 
11 /* Flags used to control the operation of cpm_overseer_$generate_call */
12 
13 dcl       (
14           CPM_GC_FORCE_READY                                /* force the control point into the ready state */
15                               initial ("400000000000"b3),
16           CPM_GC_PUSH_PREFERRED                             /* make the control point preferred while running */
17                               initial ("200000000000"b3)
18           )                   bit (36) aligned static options (constant);
19 
20 /* END INCLUDE FILE ... cpm_generate_call_flags.incl.pl1 */