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

MySQL数据库

开发平台:

Visual C++

  1. /* ==== queue.c ============================================================
  2.  * Copyright (c) 1993, 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 : Queue functions.
  33.  *
  34.  *  1.00 93/07/15 proven
  35.  *      -Started coding this file.
  36.  */
  37. #ifndef lint
  38. static const char rcsid[] = "$Id$";
  39. #endif
  40. #include <pthread.h>
  41. /*
  42.  * All routines in this file assume that the queue has been appropriatly
  43.  * locked.
  44.  */
  45. /* ==========================================================================
  46.  * pthread_queue_init()
  47.  */
  48. void pthread_queue_init(struct pthread_queue *queue)
  49. {
  50. queue->q_next = NULL;
  51. queue->q_last = NULL;
  52. queue->q_data = NULL;
  53. }
  54. /* ==========================================================================
  55.  * pthread_queue_enq()
  56.  */
  57. void pthread_queue_enq(struct pthread_queue *queue, struct pthread *thread)
  58. {
  59. if (queue->q_last) {
  60. queue->q_last->next = thread;
  61. } else {
  62. queue->q_next = thread;
  63. }
  64. queue->q_last = thread;
  65. thread->queue = queue;
  66. thread->next = NULL;
  67. }
  68. /* ==========================================================================
  69.  * pthread_queue_get()
  70.  */
  71. struct pthread *pthread_queue_get(struct pthread_queue *queue)
  72. {
  73. return(queue->q_next);
  74. }
  75. /* ==========================================================================
  76.  * pthread_queue_deq()
  77.  */
  78. struct pthread *pthread_queue_deq(struct pthread_queue *queue)
  79. {
  80. struct pthread *thread = NULL;
  81. if (queue->q_next) {
  82. thread = queue->q_next;
  83. if (!(queue->q_next = queue->q_next->next)) {
  84. queue->q_last = NULL;
  85. }
  86. thread->queue = NULL;
  87. thread->next = NULL;
  88. }
  89. return(thread);
  90. }
  91. /* ==========================================================================
  92.  * pthread_queue_remove()
  93.  */
  94. int pthread_queue_remove(struct pthread_queue *queue, struct pthread *thread)
  95. {
  96. struct pthread **current = &(queue->q_next);
  97. struct pthread *prev = NULL;
  98. int ret = NOTOK;
  99. while (*current) {
  100. if (*current == thread) {
  101. if ((*current)->next) {
  102. *current = (*current)->next;
  103. } else {
  104. queue->q_last = prev;
  105. *current = NULL;
  106. }
  107. thread->queue = NULL;
  108. thread->next = NULL;
  109. ret = OK;
  110. break;
  111. }
  112. prev = *current;
  113. current = &((*current)->next);
  114. }
  115. return(ret);
  116. }
  117. /* ==========================================================================
  118.  * pthread_llist_remove()
  119.  */
  120. int pthread_llist_remove(struct pthread **llist, struct pthread *thread)
  121. {
  122. while (*llist) {
  123. if (*llist == thread) {
  124. *llist = thread->next;
  125. return(OK);
  126. }
  127. llist = &(*llist)->next;
  128. }
  129. return(NOTOK);
  130. }