home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / mysys / my_static.h < prev    next >
C/C++ Source or Header  |  2000-09-16  |  2KB  |  71 lines

  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. /*
  19.   Static variables for mysys library. All definied here for easy making of
  20.   a shared library
  21. */
  22.  
  23. #include "mysys_priv.h"
  24. #include <signal.h>
  25.  
  26. #define MAX_SIGNALS    10        /* Max signals under a dont-allow */
  27. #define MIN_KEYBLOCK    (min(IO_SIZE,1024))
  28. #define MAX_KEYBLOCK    8192        /* Max keyblocklength == 8*IO_SIZE */
  29. #define MAX_BLOCK_TYPES MAX_KEYBLOCK/MIN_KEYBLOCK
  30.  
  31. struct st_remember {
  32.   int number;
  33.   sig_handler (*func)(int number);
  34. };
  35.  
  36. struct irem {
  37.     struct remember *_pNext;        /* Linked list of structures       */
  38.     struct remember *_pPrev;        /* Other link               */
  39.     my_string _sFileName;        /* File in which memory was new'ed */
  40.     uint _uLineNum;            /* Line number in above file       */
  41.     uint _uDataSize;            /* Size requested           */
  42.     long _lSpecialValue;        /* Underrun marker value       */
  43. };
  44.  
  45. struct remember {
  46.     struct irem tInt;
  47.     char aData[1];
  48. };
  49.  
  50. extern char    NEAR curr_dir[FN_REFLEN],NEAR home_dir_buff[FN_REFLEN];
  51.  
  52. extern volatile int _my_signals;
  53. extern struct st_remember _my_sig_remember[MAX_SIGNALS];
  54.  
  55. extern const char *soundex_map;
  56.  
  57. extern USED_MEM* my_once_root_block;
  58. extern uint     my_once_extra;
  59.  
  60. #ifndef HAVE_TEMPNAM
  61. extern int    _my_tempnam_used;
  62. #endif
  63.  
  64. extern byte    *sf_min_adress,*sf_max_adress;
  65. extern uint    cNewCount;
  66. extern struct remember *pRememberRoot;
  67.  
  68. #if defined(THREAD) && !defined(__WIN__)
  69. extern sigset_t my_signals;        /* signals blocked by mf_brkhant */
  70. #endif
  71.