home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_04 / 8n04097b < prev    next >
Text File  |  1990-03-20  |  329b  |  13 lines

  1.  
  2. ***********************************************************
  3.  
  4. while (FOREVER) {
  5.    if (ready.task1) task1();
  6.    else if (ready.task2a) task2a();
  7.    else if (ready.task2b) task2b();
  8.    else if (ready.task4)  task4();
  9.    else if (ready.task3)  task3();
  10.    }
  11. ******************LISTING 5********************************
  12.  
  13.