mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-07-03 15:37:12 +02:00
bin
cmake
module
Base
Core
Entity
Library
Misc
Vendor
AES256
B64
CivetWeb
ConcurrentQueue
Fmt
Hash
MDBC
cmake
examples
include
libmariadb
CMakeLists.txt
acinclude.m4
array.c
bchange.c
bmove.c
bmove_upp.c
charset.c
client_plugin.c
dbug.c
default.c
errmsg.c
errors.c
get_password.c
getopt.c
getopt1.c
hash.c
int2str.c
is_prefix.c
libmariadb.c
list.c
llstr.c
longlong2str.c
ma_dtoa.c
ma_dyncol.c
ma_secure.c
ma_time.c
mf_dirname.c
mf_fn_ext.c
mf_format.c
mf_loadpath.c
mf_pack.c
mf_path.c
mf_unixpath.c
mf_wcomp.c
mulalloc.c
my_alloc.c
my_auth.c
my_charset.c
my_compress.c
my_context.c
my_div.c
my_error.c
my_fopen.c
my_fstream.c
my_getwd.c
my_init.c
my_lib.c
my_loaddata.c
my_malloc.c
my_messnc.c
my_net.c
my_once.c
my_open.c
my_port.c
my_pthread.c
my_read.c
my_realloc.c
my_seek.c
my_static.c
my_static.h
my_stmt.c
my_stmt_codec.c
my_symlink.c
my_thr_init.c
my_vsnprintf.c
my_write.c
mysql_async.c
mysys_priv.h
net.c
password.c
sha1.c
str2int.c
strcend.c
strcont.c
strend.c
strfill.c
string.c
strinstr.c
strmake.c
strmov.c
strnlen.c
strnmov.c
strto.c
strtoll.c
strtoull.c
strxmov.c
strxnmov.c
thr_mutex.c
typelib.c
violite.c
mariadb_config
plugins
win
win-iconv
zlib
CMakeLists.txt
COPYING.LIB
README
MaxmindDB
MuJS
PUGIXML
SQLite
SimpleIni
SimpleSocket
TinyDir
Whirlpool
CMakeLists.txt
CMakeLists.txt
Core.cpp
Core.hpp
Logger.cpp
Logger.hpp
Main.cpp
Register.cpp
SqBase.hpp
sdk
.gitignore
.gitmodules
CMakeLists.txt
LICENSE
README.md
71 lines
2.2 KiB
C
71 lines
2.2 KiB
C
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with this library; if not, write to the Free
|
|
Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
MA 02111-1301, USA */
|
|
|
|
/*
|
|
Static variables for mysys library. All definied here for easy making of
|
|
a shared library
|
|
*/
|
|
|
|
#include "mysys_priv.h"
|
|
#include <signal.h>
|
|
|
|
#define MAX_SIGNALS 10 /* Max signals under a dont-allow */
|
|
#define MIN_KEYBLOCK (min(IO_SIZE,1024))
|
|
#define MAX_KEYBLOCK 8192 /* Max keyblocklength == 8*IO_SIZE */
|
|
#define MAX_BLOCK_TYPES MAX_KEYBLOCK/MIN_KEYBLOCK
|
|
|
|
struct st_remember {
|
|
int number;
|
|
sig_handler (*func)(int number);
|
|
};
|
|
|
|
struct irem {
|
|
struct remember *_pNext; /* Linked list of structures */
|
|
struct remember *_pPrev; /* Other link */
|
|
my_string _sFileName; /* File in which memory was new'ed */
|
|
uint _uLineNum; /* Line number in above file */
|
|
uint _uDataSize; /* Size requested */
|
|
long _lSpecialValue; /* Underrun marker value */
|
|
};
|
|
|
|
struct remember {
|
|
struct irem tInt;
|
|
char aData[1];
|
|
};
|
|
|
|
extern char NEAR curr_dir[FN_REFLEN],NEAR home_dir_buff[FN_REFLEN];
|
|
|
|
extern volatile int _my_signals;
|
|
extern struct st_remember _my_sig_remember[MAX_SIGNALS];
|
|
|
|
extern const char *soundex_map;
|
|
|
|
extern USED_MEM* my_once_root_block;
|
|
extern uint my_once_extra;
|
|
|
|
#if !defined(HAVE_TEMPNAM) || defined(HPUX11)
|
|
extern int _my_tempnam_used;
|
|
#endif
|
|
|
|
extern unsigned char *sf_min_adress,*sf_max_adress;
|
|
extern uint cNewCount;
|
|
extern struct remember *pRememberRoot;
|
|
|
|
#if defined(THREAD) && !defined(__WIN__)
|
|
extern sigset_t my_signals; /* signals blocked by mf_brkhant */
|
|
#endif
|