
{ The priority aging interval has a unit of microseconds.

  TYPE
    jmt$priority_aging_interval = 0 .. jmc$priority_aging_interval_max;

*IF $true(osv$unix)

  CONST
    jmc$priority_aging_interval_max = 7fffffff(16);

*ELSE

  CONST
    jmc$priority_aging_interval_max = jmc$highest_prio_age_interval +
          jmc$keyword_offset_maximum;

*IFEND

{ The following constants define the range of values permitted on SCL
{ parameter definitions and the internal representation for the keyword,
{ UNLIMITED.

*IF $true(osv$unix)

  CONST
    jmc$lowest_prio_age_interval = 1 * 1000000, { microseconds
    jmc$highest_prio_age_interval = 7ffffffe(16), { microseconds
    jmc$unlimited_prio_age_interval = 7fffffff(16);

*ELSE

  CONST
    jmc$lowest_prio_age_interval = 1 * 1000000, { microseconds
    jmc$highest_prio_age_interval = 36000 * 1000000, { microseconds
    jmc$unlimited_prio_age_interval = jmc$highest_prio_age_interval +
          jmc$unlimited_offset;

*IFEND

*copyc jmc$attribute_keyword_offsets
