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

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