1 /* BEGIN INCLUDE FILE timer_manager_constants.incl.pl1 */
 2 
 3 /****^  HISTORY COMMENTS:
 4   1) change(85-03-05,Sibert), approve(87-05-25,MCR7678),
 5      audit(87-04-02,GDixon), install(87-08-04,MR12.1-1056):
 6      Initially written.
 7                                                    END HISTORY COMMENTS */
 8 
 9 /* Values for the flags arguments in timer_manager_ calls */
10 
11 dcl ABSOLUTE_MICROSECONDS bit (2) int static options (constant) init ("00"b);
12 dcl ABSOLUTE_SECONDS bit (2) int static options (constant) init ("01"b);
13 dcl RELATIVE_MICROSECONDS bit (2) int static options (constant) init ("10"b);
14 dcl RELATIVE_SECONDS bit (2) int static options (constant) init ("11"b);
15 
16 /* END INCLUDE FILE timer_manager_constants.incl.pl1 */