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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /*
  18.   Static variables for mysys library. All definied here for easy making of
  19.   a shared library
  20. */
  21. #include "mysys_priv.h"
  22. #include <signal.h>
  23. #define MAX_SIGNALS 10 /* Max signals under a dont-allow */
  24. #define MIN_KEYBLOCK (min(IO_SIZE,1024))
  25. #define MAX_KEYBLOCK 8192 /* Max keyblocklength == 8*IO_SIZE */
  26. #define MAX_BLOCK_TYPES MAX_KEYBLOCK/MIN_KEYBLOCK
  27. struct st_remember {
  28.   int number;
  29.   sig_handler (*func)(int number);
  30. };
  31. struct irem {
  32.     struct remember *_pNext; /* Linked list of structures    */
  33.     struct remember *_pPrev; /* Other link    */
  34.     my_string _sFileName; /* File in which memory was new'ed */
  35.     uint _uLineNum; /* Line number in above file    */
  36.     uint _uDataSize; /* Size requested    */
  37.     long _lSpecialValue; /* Underrun marker value    */
  38. };
  39. struct remember {
  40.     struct irem tInt;
  41.     char aData[1];
  42. };
  43. extern char NEAR curr_dir[FN_REFLEN],NEAR home_dir_buff[FN_REFLEN];
  44. extern volatile int _my_signals;
  45. extern struct st_remember _my_sig_remember[MAX_SIGNALS];
  46. extern const char *soundex_map;
  47. extern USED_MEM* my_once_root_block;
  48. extern uint  my_once_extra;
  49. #ifndef HAVE_TEMPNAM
  50. extern int _my_tempnam_used;
  51. #endif
  52. extern byte *sf_min_adress,*sf_max_adress;
  53. extern uint cNewCount;
  54. extern struct remember *pRememberRoot;
  55. #if defined(THREAD) && !defined(__WIN__)
  56. extern sigset_t my_signals; /* signals blocked by mf_brkhant */
  57. #endif