home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s038 / 5.ddi / 012.LIF / SYSLOAD.HLP < prev    next >
Encoding:
Text File  |  1992-07-02  |  3.3 KB  |  70 lines

  1.  
  2. SYSLOAD:   HI command
  3.            Loads a dynamically loadable device driver or user job as 
  4.            a child job of the HI.  The driver or job remains resident 
  5.            in memory until the system is reset.
  6.  
  7.            SYNTAX:
  8.            sysload [poolmin, poolmax] pathname [driver-params]
  9.  
  10.            PARAMETERS:
  11.  
  12.            poolmin
  13.                     A decimal number specifying the minimum allowable
  14.                     memory pool size for the job being loaded, in 
  15.                     K-bytes.  The default is 296K.  Do not follow the 
  16.                     number with the character K, and do not use 
  17.                     hexadecimal or octal numbers.
  18.  
  19.            poolmax
  20.                     A decimal number specifying the maximum allowable
  21.                     memory pool size for the job being loaded, in 
  22.                     K-bytes.  The default is 16 Mbytes (0FFFFFH).  Do 
  23.                     not follow the number with the character K, and do 
  24.                     not use hexadecimal or octal numbers.  For use with 
  25.                     himem, poolmax should be equal to poolmin.
  26.  
  27.            pathname
  28.                     The fully specified pathname of the driver or job
  29.                     to be loaded.  The pathname must begin at the root 
  30.                     directory (for example, /rmx386/drivers/ramdrv); it 
  31.                     cannot be relative to your current working directory.
  32.  
  33.            driver-params
  34.                     Parameters specific to the driver being loaded.
  35.                     These may be optional, depending on the driver or job.  
  36.                     The syntax of any parameters is defined by each driver 
  37.                     and I/O job; sysload passes the parameters without 
  38.                     interpreting them.
  39.  
  40.            ADDITIONAL INFORMATION:
  41.  
  42.            A loadable device driver is a device driver built as an HI
  43.            command.  Because you load the driver while the system is
  44.            running, rather than configuring it with the ICU, you can
  45.            dynamically change driver configuration.
  46.  
  47.            Loaded jobs are user applications that can be added to the 
  48.            operating system in a semi-permanent fashion.  Once the job is 
  49.            loaded with the sysload command, the job remains part of the 
  50.            operating system until it explicitly exits or until the system 
  51.            is rebooted.
  52.  
  53.            Typically, you only load a driver or job once each time the 
  54.            system is started.  The loaded driver is not deleted even after 
  55.            you log off, since sysload loads the driver as a child job of the 
  56.            HI rather than the CLI.  You may use the sysload command in a 
  57.            submit file, such as r?logon or loadinfo.
  58.  
  59.            If a driver is already loaded and you reload it without resetting 
  60.            the system, a new instance of the driver is loaded.
  61.  
  62.            The loaded driver or job do not have access to standard :ci: and
  63.            :co: since it is not associated with any user or terminal.
  64.            Therefore, all input parameters must either be specified on the
  65.            sysload command line or the driver must read them from a file.
  66.            Likewise, any output messages must be directed to a log file.
  67.  
  68.            For further information on this command, refer to the
  69.            Command Reference manual.
  70.