home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / TASK1.ZIP / TASKER.DOC next >
Encoding:
Text File  |  1988-08-06  |  1.0 KB  |  30 lines

  1.  
  2.                    HOW IT WORKS - AND WHAT IT WON'T DO
  3.  
  4.    This unit can be used to perform multi-tasking in a single user
  5.  environment. This package does NOT do pre-emptive (i.e. interrupt driven)
  6.  multi-tasking. In order for it to work, all of your procedures should call
  7.  YIELD when they have some time to give away.
  8.  
  9. ------------------------------------------------------------------------------
  10.  
  11.   This program(procedure) is the property of Blue Star Systems, which
  12.  reserved all rights. Use of this program for commercial purposes is
  13.  prohibited.
  14.  
  15.   To obtain source code for this program, please send $10.00 to
  16.  
  17.   Blue Star Systems       Please specify disk size. (5.25 / 3.5)
  18.   7751 Chestnut Ave
  19.   Hammond In. 46324
  20.  
  21. -------------------------------------------------------------------------------
  22.  
  23.    Notes:   Maximum number of processes = 30
  24.  
  25.             Be sure to set up a small stack, otherwise you may run
  26.             out of heap to allocate for each processes stack.
  27.  
  28.             If in doubt, yield
  29.  
  30.