ncbithr_conf.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ncbithr_conf.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2003/11/18 15:43:18  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef CORELIB___NCBITHR_CONF__HPP
  10. #define CORELIB___NCBITHR_CONF__HPP
  11. /*  $Id: ncbithr_conf.hpp,v 1000.1 2003/11/18 15:43:18 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Author:  Eugene Vasilchenko
  37.  *
  38.  *
  39.  */
  40. /// @file ncbithr_conf.hpp
  41. /// Multi-threading configuration.
  42. #include <corelib/ncbistd.hpp>
  43. #if defined(NCBI_WIN32_THREADS)
  44. #  include <corelib/ncbi_os_mswin.hpp>
  45. #elif defined(NCBI_POSIX_THREADS)
  46. extern "C" {
  47. #    include <pthread.h>
  48. }
  49. #    include <sys/errno.h>
  50. #endif
  51. BEGIN_NCBI_SCOPE
  52. /** @addtogroup Threads
  53.  *
  54.  * @{
  55.  */
  56. /////////////////////////////////////////////////////////////////////////////
  57. //
  58. // DECLARATIONS of internal (platform-dependent) representations
  59. //
  60. //    TTlsKey          -- internal TLS key type
  61. //    TThreadHandle    -- platform-dependent thread handle type
  62. //    TThreadSystemID  -- platform-dependent thread ID type
  63. //
  64. //  NOTE:  all these types are intended for internal use only!
  65. //
  66. #if defined(NCBI_WIN32_THREADS)
  67. /// Define internal TLS key type.
  68. typedef DWORD  TTlsKey;
  69. /// Define platform-dependent thread handle type.
  70. typedef HANDLE TThreadHandle;
  71. /// Define platform-dependent thread ID type.
  72. typedef DWORD  TThreadSystemID;
  73. /// Define platform-dependent result wrapper.
  74. typedef DWORD  TWrapperRes;
  75. /// Define platform-dependent argument wrapper.
  76. typedef LPVOID TWrapperArg;
  77. #elif defined(NCBI_POSIX_THREADS)
  78. /// Define internal TLS key type.
  79. typedef pthread_key_t TTlsKey;
  80. /// Define platform-dependent thread handle type.
  81. typedef pthread_t     TThreadHandle;
  82. /// Define platform-dependent thread ID type.
  83. typedef pthread_t     TThreadSystemID;
  84. /// Define platform-dependent result wrapper.
  85. typedef void* TWrapperRes;
  86. /// Define platform-dependent argument wrapper.
  87. typedef void* TWrapperArg;
  88. #else
  89. // fake
  90. /// Define internal TLS key type.
  91. typedef void* TTlsKey;
  92. /// Define platform-dependent thread handle type.
  93. typedef int   TThreadHandle;
  94. /// Define platform-dependent thread ID type.
  95. typedef int   TThreadSystemID;
  96. /// Define platform-dependent result wrapper.
  97. typedef void* TWrapperRes;
  98. /// Define platform-dependent argument wrapper.
  99. typedef void* TWrapperArg;
  100. #endif
  101. END_NCBI_SCOPE
  102. /* @} */
  103. /*
  104.  * ===========================================================================
  105.  * $Log: ncbithr_conf.hpp,v $
  106.  * Revision 1000.1  2003/11/18 15:43:18  gouriano
  107.  * PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.8
  108.  *
  109.  * Revision 1.8  2003/11/18 11:58:06  siyan
  110.  * Changed so @addtogroup does not cross namespace boundary
  111.  *
  112.  * Revision 1.7  2003/08/18 16:03:33  siyan
  113.  * Added CORELIB___ prefix to the #ifndef/#define file inclusion check macros.
  114.  *
  115.  * Revision 1.6  2003/08/04 12:41:19  siyan
  116.  * Documentation changes.
  117.  *
  118.  * Revision 1.5  2003/06/03 18:24:28  rsmith
  119.  * wrap includes of sched.h (explicit and implicit) in extern "c" blocks, since Apples headers do not do it themselves.
  120.  *
  121.  * Revision 1.4  2003/03/31 13:30:52  siyan
  122.  * Minor changes to doxygen support
  123.  *
  124.  * Revision 1.3  2003/03/31 13:16:59  siyan
  125.  * Added doxygen support
  126.  *
  127.  * Revision 1.2  2002/09/20 14:14:05  vasilche
  128.  * Fixed inconsistency of NCBI_*_THREADS macros
  129.  *
  130.  * Revision 1.1  2002/09/19 20:05:41  vasilche
  131.  * Safe initialization of static mutexes
  132.  *
  133.  * ===========================================================================
  134.  */
  135. #endif