my_static.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /*
  14.   Static variables for mysys library. All definied here for easy making of
  15.   a shared library
  16. */
  17. #if !defined(stdin) || defined(OS2)
  18. #include "mysys_priv.h"
  19. #include "my_static.h"
  20. #include "my_alarm.h"
  21. #endif
  22. /* from my_init */
  23. my_string home_dir=0,my_progname=0;
  24. char NEAR curr_dir[FN_REFLEN]= {0},
  25. NEAR home_dir_buff[FN_REFLEN]= {0};
  26. ulong my_stream_opened=0,my_file_opened=0, my_tmp_file_created=0;
  27. int NEAR my_umask=0664, NEAR my_umask_dir=0777;
  28. #ifndef THREAD
  29. int NEAR my_errno=0;
  30. #endif
  31. struct st_my_file_info my_file_info_default[MY_NFILE]= {{0,UNOPEN}};
  32. uint   my_file_limit= MY_NFILE;
  33. struct st_my_file_info *my_file_info= my_file_info_default;
  34. /* From mf_brkhant */
  35. int NEAR my_dont_interrupt=0;
  36. volatile int _my_signals=0;
  37. struct st_remember _my_sig_remember[MAX_SIGNALS]={{0,0}};
  38. #ifdef THREAD
  39. sigset_t my_signals; /* signals blocked by mf_brkhant */
  40. #endif
  41. /* from mf_keycache.c */
  42. my_bool key_cache_inited=0;
  43. /* from mf_reccache.c */
  44. ulong my_default_record_cache_size=RECORD_CACHE_SIZE;
  45. /* from soundex.c */
  46. /* ABCDEFGHIJKLMNOPQRSTUVWXYZ */
  47. /* :::::::::::::::::::::::::: */
  48. const char *soundex_map=   "01230120022455012623010202";
  49. /* from my_malloc */
  50. USED_MEM* my_once_root_block=0; /* pointer to first block */
  51. uint   my_once_extra=ONCE_ALLOC_INIT; /* Memory to alloc / block */
  52. /* from my_tempnam */
  53. #if !defined(HAVE_TEMPNAM) || defined(HPUX11)
  54. int _my_tempnam_used=0;
  55. #endif
  56. /* from safe_malloc */
  57. uint sf_malloc_prehunc=0, /* If you have problem with core- */
  58.      sf_malloc_endhunc=0, /* dump when malloc-message.... */
  59. /* set theese to 64 or 128  */
  60.      sf_malloc_quick=0; /* set if no calls to sanity */
  61. ulong sf_malloc_cur_memory= 0L; /* Current memory usage */
  62. ulong sf_malloc_max_memory= 0L; /* Maximum memory usage */
  63. uint  sf_malloc_count= 0; /* Number of times NEW() was called */
  64. byte *sf_min_adress= (byte*) ~(unsigned long) 0L,
  65.      *sf_max_adress= (byte*) 0L;
  66. /* Root of the linked list of struct st_irem */
  67. struct st_irem *sf_malloc_root = NULL;
  68. /* from my_alarm */
  69. int volatile my_have_got_alarm=0; /* declare variable to reset */
  70. ulong my_time_to_wait_for_lock=2; /* In seconds */
  71. /*
  72.   We need to have this define here as otherwise linking will fail
  73.   on OSF1 when compiling --without-raid --with-debug
  74. */
  75. const char *raid_type_string[]={"none","striped"};
  76. /* from errors.c */
  77. #ifdef SHARED_LIBRARY
  78. char * NEAR globerrs[GLOBERRS]; /* my_error_messages is here */
  79. #endif
  80. void (*my_abort_hook)(int) = (void(*)(int)) exit;
  81. int (*error_handler_hook)(uint error,const char *str,myf MyFlags)=
  82.     my_message_no_curses;
  83. int (*fatal_error_handler_hook)(uint error,const char *str,myf MyFlags)=
  84.   my_message_no_curses;
  85. /* How to disable options */
  86. my_bool NEAR my_disable_locking=0;
  87. my_bool NEAR my_disable_async_io=0;
  88. my_bool NEAR my_disable_flush_key_blocks=0;
  89. my_bool NEAR my_disable_symlinks=0;
  90. my_bool NEAR mysys_uses_curses=0;