SIRAPSY command

From m204wiki
Jump to navigation Jump to search

Note: This is a Sirius Mods-only command prior to Version 7.5 of Model 204.

The SIRAPSY command allows the manual setting of the resident/non-resident attribute of a pre-compiled subsystem procedure. This is useful in overriding Model 204's default behavior if the decisions it makes based on RESTHRSH and RESLTHR are not appropriate. The SIRAPSY command can only be run against an active subsystem so a logical place for SIRAPSY commands might be in a subsystem start/init procedure.

Syntax

SIRAPSY DIS | DISPLAY | RES | NORES subsystem proc

Where:

  • subsystem is the name of the subsystem to which the command applies.
  • proc is the name of the procedure to which the command applies.

Usage

The SIRAPSY command is only available with the Sirius Performance Enhancements V2, and it can only be issued by a system manager or system administrator.

Example

The following command sets SIRMON procedure MOPR-MENU to become resident next time it is loaded:

SIRAPSY RES SIRMON MOPR-MENU

This command sets SIRMON procedure MOPR-SYSOVR so that it will never be set to resident:

SIRAPSY NORES SIRMON MOPR-SYSOVR

SIRAPSY NORES will not drop the residency attribute of a procedure once it is made resident.