home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / spe.zip / readme.txt next >
Text File  |  1997-03-19  |  1KB  |  31 lines

  1. SetPriority with exec (SPE)
  2. ===========================
  3.  
  4. SPE is a 'light' version of the sp.exe program (sp103.zip).  SP uses
  5. a C system() call to run programs at a given priority level, and
  6. hence a command processor is run at that priority level which then
  7. runs the target program.  This is a resource heavy operation that
  8. leaves a command processor running (doing nothing) until the target
  9. program terminates, but allows SP to run any sort of OS/2 program
  10. (OS/2, DOS or Windows) or command files.  SPE can only run OS/2 *.exe
  11. programs, but uses a C execv() call and hence does not require a
  12. command processor.
  13.  
  14. Usage:
  15.    Usage:\n"
  16.       spe <class>[delta] <program> [args...]
  17.  
  18.       <class>:  n=no change, i=idle, r=regular, f=foreground,
  19.          t=time critical
  20.       [delta]:  Any number from -31 to 31
  21.       <program>: Name of the program to be run.  This should include
  22.          the extension and can include the path.
  23.       [args...]: The command line arguments for the <program>.
  24.  
  25.       Note that there is no whitespace between the <class> and the
  26.       optional [delta].
  27.  
  28. Freeware, source code included (Watcom C/C++ 10.0a compiler).
  29.  
  30. Author: J S Worthington (stephen@inisant.actrix.gen.nz)
  31.