Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

INSTALL Call

 

A special call is provided to enable an MFS to perform any special processing that might be required to initialize itself. This is the INSTALL call.

...

All MFSs should thus execute the following logic upon encountering an MFS call:

...

Code Block
INSTALL:
(MFS-specific initialization logic here)
STATUS = 1
RETURN

...

Even if the MFS does not use the FLUSH call, it should include this logic:

...

Code Block
FLUSH:
STATUS = 1
RETURN

...