mysys_priv.h
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3. #include <global.h>
  4. #include <my_sys.h>
  5. #ifdef THREAD
  6. #include <my_pthread.h>
  7. extern pthread_key(int, THR_KEY_my_errno);
  8. extern pthread_key(int, THR_KEY_cmp_length);
  9. extern pthread_key(int, THR_KEY_abort);
  10. extern pthread_mutex_t THR_LOCK_malloc,THR_LOCK_open,THR_LOCK_keycache,
  11.   THR_LOCK_lock,THR_LOCK_isam;
  12. #else /* THREAD */
  13. #define pthread_mutex_lock(A)
  14. #define pthread_mutex_unlock(A)
  15. #endif