home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / AETSK101 / TASKMAIN.CC < prev    next >
C/C++ Source or Header  |  1992-05-31  |  884b  |  33 lines

  1. /**********************************************************************
  2.  *  
  3.  *  NAME:           taskmain.cpp
  4.  *  
  5.  *  DESCRIPTION:    degenerate main for multitasking system... if
  6.  *                  tasks do all the init work, just link this in
  7.  *  
  8.  *  copyright (c) 1991 J. Alan Eldridge
  9.  * 
  10.  *  M O D I F I C A T I O N   H I S T O R Y
  11.  *
  12.  *  when        who                 what
  13.  *  -------------------------------------------------------------------
  14.  *  04/12/91    J. Alan Eldridge    created
  15.  *  
  16.  *********************************************************************/
  17.  
  18. #include    "aedef.h"
  19. #include    "task.h"
  20.  
  21.  
  22. //------------------------------------------------------------
  23. //  main()  --  simple main that just calls the scheduler
  24. //------------------------------------------------------------
  25.  
  26.  
  27. main()
  28. {
  29.     scheduler();
  30.     return 0;
  31. }
  32.  
  33.