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

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. #ifndef stdin
  22. #include "mysys_priv.h"
  23. #include "my_static.h"
  24. #include "my_alarm.h"
  25. #endif
  26. /* from my_init */
  27. my_string home_dir=0,my_progname=0;
  28. char NEAR curr_dir[FN_REFLEN]= {0},
  29. NEAR home_dir_buff[FN_REFLEN]= {0};
  30. ulong my_stream_opened=0,my_file_opened=0, my_tmp_file_created=0;
  31. int NEAR my_umask=0664, NEAR my_umask_dir=0777;
  32. #ifndef THREAD
  33. int NEAR my_errno=0;
  34. #endif
  35. struct my_file_info my_file_info[MY_NFILE]= {{0,UNOPEN}};
  36. /* From mf_brkhant */
  37. int NEAR my_dont_interrupt=0;
  38. volatile int _my_signals=0;
  39. struct st_remember _my_sig_remember[MAX_SIGNALS]={{0,0}};
  40. #ifdef THREAD
  41. sigset_t my_signals; /* signals blocked by mf_brkhant */
  42. #endif
  43. /* from mf_keycache.c */
  44. my_bool key_cache_inited=0;
  45. /* from mf_reccache.c */
  46. ulong my_default_record_cache_size=RECORD_CACHE_SIZE;
  47. /* from soundex.c */
  48. /* ABCDEFGHIJKLMNOPQRSTUVWXYZ */
  49. /* :::::::::::::::::::::::::: */
  50. const char *soundex_map=   "01230120022455012623010202";
  51. /* from my_malloc */
  52. USED_MEM* my_once_root_block=0; /* pointer to first block */
  53. uint   my_once_extra=ONCE_ALLOC_INIT; /* Memory to alloc / block */
  54. /* from my_tempnam */
  55. #ifndef HAVE_TEMPNAM
  56. int _my_tempnam_used=0;
  57. #endif
  58. /* from safe_malloc */
  59. uint sf_malloc_prehunc=0, /* If you have problem with core- */
  60.      sf_malloc_endhunc=0, /* dump when malloc-message.... */
  61. /* set theese to 64 or 128  */
  62.      sf_malloc_quick=0; /* set if no calls to sanity */
  63. long lCurMemory = 0L; /* Current memory usage */
  64. long lMaxMemory = 0L; /* Maximum memory usage */
  65. uint cNewCount = 0; /* Number of times NEW() was called */
  66. byte *sf_min_adress= (byte*) ~(unsigned long) 0L,
  67.      *sf_max_adress= (byte*) 0L;
  68. /* Root of the linked list of remembers */
  69. struct remember *pRememberRoot = NULL;
  70. /* from my_alarm */
  71. int volatile my_have_got_alarm=0; /* declare variable to reset */
  72. ulong my_time_to_wait_for_lock=2; /* In seconds */
  73. /* from errors.c */
  74. #ifdef SHARED_LIBRARY
  75. char * NEAR globerrs[GLOBERRS]; /* my_error_messages is here */
  76. #endif
  77. void (*my_abort_hook)(int) = (void(*)(int)) exit;
  78. int (*error_handler_hook)(uint error,const char *str,myf MyFlags)=
  79.     my_message_no_curses;
  80. int (*fatal_error_handler_hook)(uint error,const char *str,myf MyFlags)=
  81.   my_message_no_curses;
  82. /* How to disable options */
  83. my_bool NEAR my_disable_locking=0;
  84. my_bool NEAR my_disable_async_io=0;
  85. my_bool NEAR my_disable_flush_key_blocks=0;
  86. my_bool NEAR mysys_uses_curses=0;