schedparam.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* ==== schedparam.c =======================================================
  2.  * Copyright (c) 1994 by Chris Provenzano, proven@mit.edu
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *  This product includes software developed by Chris Provenzano.
  16.  * 4. The name of Chris Provenzano may not be used to endorse or promote 
  17.  *   products derived from this software without specific prior written
  18.  *   permission.
  19.  *
  20.  * THIS SOFTWARE IS PROVIDED BY CHRIS PROVENZANO ``AS IS'' AND
  21.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  23.  * ARE DISCLAIMED.  IN NO EVENT SHALL CHRIS PROVENZANO BE LIABLE FOR ANY 
  24.  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  25.  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
  26.  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  27.  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
  28.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  29.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
  30.  * SUCH DAMAGE.
  31.  *
  32.  * Description : Pthread schedparam functions.
  33.  *
  34.  *  1.38 94/06/15 proven
  35.  *      -Started coding this file.
  36.  */
  37. #ifndef lint
  38. static const char rcsid[] = "$Id$";
  39. #endif
  40. #include <pthread.h>
  41. #include <sched.h>
  42. #include <errno.h>
  43. /* ==========================================================================
  44.  * sched_get_priority_max
  45.  */
  46. int sched_get_priority_max(int policy)
  47. {
  48. return PTHREAD_MAX_PRIORITY;
  49. }
  50. /* ==========================================================================
  51.  * sched_get_priority_min
  52.  */
  53. int sched_get_priority_min(int policy)
  54. {
  55. return PTHREAD_MIN_PRIORITY;
  56. }
  57. /* Currently only policy is supported */
  58. /* ==========================================================================
  59.  * pthread_setschedparam()
  60.  */
  61. int pthread_setschedparam(pthread_t pthread, int policy,
  62.   struct sched_param * param)
  63. {
  64. enum schedparam_policy new_policy, old_policy;
  65. int ret = OK;
  66. int prio;
  67. new_policy = policy;
  68. pthread_sched_prevent();
  69. old_policy = pthread->attr.schedparam_policy;
  70. if (param) {
  71. if ((param->sched_priority < PTHREAD_MIN_PRIORITY) ||
  72.   (param->sched_priority > PTHREAD_MAX_PRIORITY)) {
  73. pthread_sched_resume();
  74. return(EINVAL);
  75. }
  76. prio = param->sched_priority;
  77. } else {
  78. prio = pthread->pthread_priority;
  79. }
  80. if (pthread == pthread_run) {
  81. switch(new_policy) {
  82. case SCHED_RR:
  83. pthread->attr.schedparam_policy = new_policy;
  84. switch (old_policy) { 
  85. case SCHED_FIFO:
  86. machdep_unset_thread_timer(NULL);
  87. default:
  88. pthread->pthread_priority = prio;
  89. break;
  90. }
  91. break;
  92. case SCHED_FIFO:
  93. pthread->attr.schedparam_policy = new_policy;
  94. switch (old_policy) { 
  95. case SCHED_IO:
  96. case SCHED_RR:
  97. if (pthread->pthread_priority < prio) {
  98. pthread->pthread_priority = prio;
  99. pthread_sched_resume();
  100. pthread_yield();
  101. return(OK);
  102. }
  103. default:
  104. pthread->pthread_priority = prio;
  105. break;
  106. }
  107. break;
  108. case SCHED_IO:
  109. pthread->attr.schedparam_policy = new_policy;
  110. switch (old_policy) { 
  111. case SCHED_FIFO:
  112. machdep_unset_thread_timer(NULL);
  113. default:
  114. pthread->pthread_priority = prio;
  115. break;
  116. }
  117. break;
  118. default:
  119. SET_ERRNO(EINVAL);
  120. ret = EINVAL;
  121. break;
  122. }
  123. } else {
  124. switch(new_policy) {
  125. case SCHED_FIFO:
  126. case SCHED_IO:
  127. case SCHED_RR:
  128. if(pthread_prio_queue_remove(pthread_current_prio_queue,pthread) == OK) {
  129. pthread->attr.schedparam_policy = new_policy;
  130. pthread->pthread_priority  = prio;
  131. pthread_sched_other_resume(pthread);
  132. } else {
  133. pthread->attr.schedparam_policy = new_policy;
  134. pthread->pthread_priority  = prio;
  135. pthread_sched_resume();
  136. }
  137. return(OK);
  138. break;
  139. default:
  140. SET_ERRNO(EINVAL);
  141. ret = EINVAL;
  142. break;
  143. }
  144. }
  145. pthread_sched_resume();
  146. return(ret);
  147. }
  148. /* ==========================================================================
  149.  * pthread_getschedparam()
  150.  */
  151. int pthread_getschedparam(pthread_t pthread, int * policy,
  152.   struct sched_param * param)
  153. {
  154. *policy = pthread->attr.schedparam_policy;
  155. if (param) {
  156. param->sched_priority = pthread->pthread_priority;
  157. }
  158. return(OK);
  159. }