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

  1.  
  2. ************************************************
  3. while (FOREVER) {
  4.    /* sleep until awakened by clock interrupt */
  5.    sleep(clock_tick);  
  6.    task1();
  7.    task2();
  8.    task3();
  9.    task4();
  10.    }
  11.  
  12. ******************LISTING 2*********************
  13.  
  14.