sched.h
上传用户:gzdtt123
上传日期:2022-01-26
资源大小:88k
文件大小:5k
开发平台:

Visual C++

  1. /*
  2.  * Module: sched.h
  3.  *
  4.  * Purpose:
  5.  *      Provides an implementation of POSIX realtime extensions
  6.  *      as defined in 
  7.  *
  8.  *              POSIX 1003.1b-1993      (POSIX.1b)
  9.  *
  10.  * --------------------------------------------------------------------------
  11.  *
  12.  *      Pthreads-win32 - POSIX Threads Library for Win32
  13.  *      Copyright(C) 1998 John E. Bossom
  14.  *      Copyright(C) 1999,2003 Pthreads-win32 contributors
  15.  * 
  16.  *      Contact Email: rpj@callisto.canberra.edu.au
  17.  * 
  18.  *      The current list of contributors is contained
  19.  *      in the file CONTRIBUTORS included with the source
  20.  *      code distribution. The list can also be seen at the
  21.  *      following World Wide Web location:
  22.  *      http://sources.redhat.com/pthreads-win32/contributors.html
  23.  * 
  24.  *      This library is free software; you can redistribute it and/or
  25.  *      modify it under the terms of the GNU Lesser General Public
  26.  *      License as published by the Free Software Foundation; either
  27.  *      version 2 of the License, or (at your option) any later version.
  28.  * 
  29.  *      This library is distributed in the hope that it will be useful,
  30.  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  31.  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  32.  *      Lesser General Public License for more details.
  33.  * 
  34.  *      You should have received a copy of the GNU Lesser General Public
  35.  *      License along with this library in the file COPYING.LIB;
  36.  *      if not, write to the Free Software Foundation, Inc.,
  37.  *      59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  38.  */
  39. #ifndef _SCHED_H
  40. #define _SCHED_H
  41. #undef PTW32_LEVEL
  42. #if defined(_POSIX_SOURCE)
  43. #define PTW32_LEVEL 0
  44. /* Early POSIX */
  45. #endif
  46. #if defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE >= 199309
  47. #undef PTW32_LEVEL
  48. #define PTW32_LEVEL 1
  49. /* Include 1b, 1c and 1d */
  50. #endif
  51. #if defined(INCLUDE_NP)
  52. #undef PTW32_LEVEL
  53. #define PTW32_LEVEL 2
  54. /* Include Non-Portable extensions */
  55. #endif
  56. #define PTW32_LEVEL_MAX 3
  57. #if !defined(PTW32_LEVEL)
  58. #define PTW32_LEVEL PTW32_LEVEL_MAX
  59. /* Include everything */
  60. #endif
  61. #if __GNUC__ && ! defined (__declspec)
  62. # error Please upgrade your GNU compiler to one that supports __declspec.
  63. #endif
  64. /*
  65.  * When building the DLL code, you should define PTW32_BUILD so that
  66.  * the variables/functions are exported correctly. When using the DLL,
  67.  * do NOT define PTW32_BUILD, and then the variables/functions will
  68.  * be imported correctly.
  69.  */
  70. #ifdef PTW32_BUILD
  71. # define PTW32_DLLPORT __declspec (dllexport)
  72. #else
  73. # define PTW32_DLLPORT __declspec (dllimport)
  74. #endif
  75. /*
  76.  * This is a duplicate of what is in the autoconf config.h,
  77.  * which is only used when building the pthread-win32 libraries.
  78.  */
  79. #ifndef PTW32_CONFIG_H
  80. #  if defined(WINCE)
  81. #    define NEED_ERRNO
  82. #    define NEED_SEM
  83. #  endif
  84. #  if defined(_UWIN) || defined(__MINGW32__)
  85. #    define HAVE_MODE_T
  86. #  endif
  87. #endif
  88. /*
  89.  *
  90.  */
  91. #if PTW32_LEVEL >= PTW32_LEVEL_MAX
  92. #ifdef NEED_ERRNO
  93. #include "need_errno.h"
  94. #else
  95. #include <errno.h>
  96. #endif
  97. #endif /* PTW32_LEVEL >= PTW32_LEVEL_MAX */
  98. #if defined(__MINGW32__) || defined(_UWIN)
  99. #if PTW32_LEVEL >= PTW32_LEVEL_MAX
  100. /* For pid_t */
  101. #  include <sys/types.h>
  102. /* Required by Unix 98 */
  103. #  include <time.h>
  104. #endif /* PTW32_LEVEL >= PTW32_LEVEL_MAX */
  105. #else
  106. typedef int pid_t;
  107. #endif
  108. /* Thread scheduling policies */
  109. enum {
  110.   SCHED_OTHER = 0,
  111.   SCHED_FIFO,
  112.   SCHED_RR,
  113.   SCHED_MIN   = SCHED_OTHER,
  114.   SCHED_MAX   = SCHED_RR
  115. };
  116. struct sched_param {
  117.   int sched_priority;
  118. };
  119. #ifdef __cplusplus
  120. extern "C"
  121. {
  122. #endif                          /* __cplusplus */
  123. PTW32_DLLPORT int sched_yield (void);
  124. PTW32_DLLPORT int sched_get_priority_min (int policy);
  125. PTW32_DLLPORT int sched_get_priority_max (int policy);
  126. PTW32_DLLPORT int sched_setscheduler (pid_t pid, int policy);
  127. PTW32_DLLPORT int sched_getscheduler (pid_t pid);
  128. /*
  129.  * Note that this macro returns ENOTSUP rather than
  130.  * ENOSYS as might be expected. However, returning ENOSYS
  131.  * should mean that sched_get_priority_{min,max} are
  132.  * not implemented as well as sched_rr_get_interval.
  133.  * This is not the case, since we just don't support
  134.  * round-robin scheduling. Therefore I have chosen to
  135.  * return the same value as sched_setscheduler when
  136.  * SCHED_RR is passed to it.
  137.  */
  138. #define sched_rr_get_interval(_pid, _interval) 
  139.   ( errno = ENOTSUP, (int) -1 )
  140. #ifdef __cplusplus
  141. }                               /* End of extern "C" */
  142. #endif                          /* __cplusplus */
  143. #undef PTW32_LEVEL
  144. #undef PTW32_LEVEL_MAX
  145. #endif                          /* !_SCHED_H */