home *** CD-ROM | disk | FTP | other *** search
/ RISCWORLD 7 / RISCWORLD_VOL7.iso / Software / Issue2 / SDL.ARC / !unixlib / source / clib / h / sched < prev    next >
Encoding:
Text File  |  2004-09-05  |  518 b   |  26 lines

  1. /****************************************************************************
  2.  *
  3.  * $Source: /usr/local/cvsroot/gccsdk/unixlib/source/clib/sched.h,v $
  4.  * $Date: 2002/12/15 13:16:55 $
  5.  * $Revision: 1.1 $
  6.  * $State: Exp $
  7.  * $Author: admin $
  8.  *
  9.  ***************************************************************************/
  10.  
  11. #ifndef __SCHED_H
  12. #define __SCHED_H
  13.  
  14. #define SCHED_FIFO 0
  15. #define SCHED_RR 1
  16. #define SCHED_SPORADIC 2
  17. #define SCHED_OTHER 3
  18.  
  19. struct sched_param
  20. {
  21.   int sched_priority;
  22. };
  23.  
  24. #endif /* __SCHED_H */
  25.  
  26.