home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / cmds / root.3 / usr / include / sys / rtpriocntl.h / rtpriocntl
Text File  |  1998-08-19  |  2KB  |  71 lines

  1. /*
  2.  * Copyright (c) 1998 The Santa Cruz Operation, Inc.. All Rights Reserved. 
  3.  *                                                                         
  4.  *        THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF THE               
  5.  *                   SANTA CRUZ OPERATION INC.                             
  6.  *                                                                         
  7.  *   The copyright notice above does not evidence any actual or intended   
  8.  *   publication of such source code.                                      
  9.  */
  10.  
  11. #ifndef _PROC_CLASS_RTPRIOCNTL_H    /* wrapper symbol for kernel use */
  12. #define _PROC_CLASS_RTPRIOCNTL_H    /* subject to change without notice */
  13.  
  14. #ident    "@(#)kern:proc/class/rtpriocntl.h    1.2"
  15. #ident    "$Header: $"
  16.  
  17. #if defined(__cplusplus)
  18. extern "C" {
  19. #endif
  20.  
  21. #ifdef _KERNEL
  22.  
  23. #ifndef _UTIL_TYPES_H
  24. #include <util/types.h>    /* REQUIRED */
  25. #endif
  26.  
  27. #endif /* _KERNEL */
  28.  
  29. /*
  30.  * Real-time class specific structures for the priocntl system call.
  31.  */
  32.  
  33. typedef struct rtparms {
  34.     short    rt_pri;        /* real-time priority */
  35.     ulong    rt_tqsecs;    /* seconds in time quantum */
  36.     long    rt_tqnsecs;    /* additional nanosecs in time quantum */
  37. } rtparms_t;
  38.  
  39.  
  40. typedef struct rtinfo {
  41.     short    rt_maxpri;    /* maximum configured real-time priority */
  42. } rtinfo_t;
  43.  
  44.  
  45. #define    RT_NOCHANGE    -1
  46. #define RT_TQINF    -2
  47. #define RT_TQDEF    -3
  48.  
  49.  
  50. /*
  51.  * The following is used by the dispadmin(1M) command for
  52.  * scheduler administration and is not for general use.
  53.  */
  54.  
  55. typedef struct rtadmin {
  56.     struct rtdpent    *rt_dpents;
  57.     short        rt_ndpents;
  58.     short        rt_cmd;
  59. } rtadmin_t;
  60.  
  61. #define    RT_GETDPSIZE    1
  62. #define    RT_GETDPTBL    2
  63. #define    RT_SETDPTBL    3
  64.  
  65.  
  66. #if defined(__cplusplus)
  67.     }
  68. #endif
  69.  
  70. #endif    /* _PROC_CLASS_RTPRIOCNTL_H */
  71.