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

MySQL数据库

开发平台:

Visual C++

  1. /* ==== pthread_tad.h ========================================================
  2.  * Copyright (c) 1995 by Chris Provenzano, proven@athena.mit.edu
  3.  *
  4.  * Redistribution and use in source and binary forms, with or without
  5.  * modification, are permitted provided that the following conditions
  6.  * are met:
  7.  * 1. Redistributions of source code must retain the above copyright
  8.  *    notice, this list of conditions and the following disclaimer.
  9.  * 2. Redistributions in binary form must reproduce the above copyright
  10.  *    notice, this list of conditions and the following disclaimer in the
  11.  *    documentation and/or other materials provided with the distribution.
  12.  * 3. All advertising materials mentioning features or use of this software
  13.  *    must display the following acknowledgement:
  14.  * This product includes software developed by Chris Provenzano,
  15.  * and its contributors.
  16.  * 4. Neither the name of Chris Provenzano, nor the names of
  17.  *   its contributors may be used to endorse or promote products derived
  18.  *    from this software without specific prior written permission.
  19.  *
  20.  * THIS SOFTWARE IS PROVIDED BY CHRIS PROVENZANO, AND CONTRIBUTORS
  21.  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  22.  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  23.  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
  24.  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  25.  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  26.  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  27.  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  28.  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  29.  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  30.  * POSSIBILITY OF SUCH DAMAGE.
  31.  *
  32.  */
  33. #include <pthread.h>
  34. #include <sys/cdefs.h>
  35. typedef struct pthread_tad_t {
  36. pthread_mutex_t  mutex;
  37. pthread_cond_t  cond;
  38. unsigned int  count_current;
  39. unsigned int  count_max;
  40. void * arg;
  41. void * (*routine)();
  42. } pthread_tad_t;
  43. typedef struct pthread_atexit {
  44. struct pthread_atexit * next;
  45. struct pthread_atexit * prev;
  46. void    (*rtn)(void *);
  47. void * arg;
  48. } * pthread_atexit_t;
  49. /*
  50.  * New functions
  51.  */
  52. __BEGIN_DECLS
  53. int pthread_tad_count __P_((pthread_tad_t *));
  54. int pthread_tad_create __P_((pthread_tad_t *, pthread_t *, pthread_attr_t *,
  55.  void *(*routine)(), void *));
  56. int pthread_tad_wait __P_((pthread_tad_t *, unsigned int));
  57. int pthread_tad_init __P_((pthread_tad_t *, unsigned int));
  58. int pthread_tad_destroy __P_((pthread_tad_t *));
  59. int pthread_atexit_add __P_((pthread_atexit_t *, void (*)(void *), void *));
  60. int pthread_atexit_remove __P_((pthread_atexit_t *, int));
  61. void fclose_nrv __P_((void *));
  62. void fflush_nrv __P_((void *));
  63. void pthread_attr_destroy_nrv __P_((void *));
  64. __END_DECLS