my_global.h
上传用户:jxpjxmjjw
上传日期:2009-12-07
资源大小:5877k
文件大小:35k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. /* Copyright (C) 2000-2003 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. /* This is the include file that should be included 'first' in every C file. */
  14. #ifndef _global_h
  15. #define _global_h
  16. #ifndef EMBEDDED_LIBRARY
  17. #define HAVE_REPLICATION
  18. #define HAVE_EXTERNAL_CLIENT
  19. #endif
  20. #if defined( __EMX__) && !defined( MYSQL_SERVER)
  21. /* moved here to use below VOID macro redefinition */
  22. #define INCL_BASE
  23. #define INCL_NOPMAPI
  24. #include <os2.h>
  25. #endif /* __EMX__ */
  26. #ifdef __CYGWIN__
  27. /* We use a Unix API, so pretend it's not Windows */
  28. #undef WIN
  29. #undef WIN32
  30. #undef _WIN
  31. #undef _WIN32
  32. #undef _WIN64
  33. #undef __WIN__
  34. #undef __WIN32__
  35. #define HAVE_ERRNO_AS_DEFINE
  36. #endif /* __CYGWIN__ */
  37. #if defined(i386) && !defined(__i386__)
  38. #define __i386__
  39. #endif
  40. /* Macros to make switching between C and C++ mode easier */
  41. #ifdef __cplusplus
  42. #define C_MODE_START    extern "C" {
  43. #define C_MODE_END }
  44. #else
  45. #define C_MODE_START
  46. #define C_MODE_END
  47. #endif
  48. #if defined(_WIN32) || defined(_WIN64) || defined(__WIN32__) || defined(WIN32)
  49. #include <config-win.h>
  50. #elif defined(OS2)
  51. #include <config-os2.h>
  52. #elif defined(__NETWARE__)
  53. #include <my_config.h>
  54. #include <config-netware.h>
  55. #if defined(__cplusplus) && defined(inline)
  56. #undef inline /* fix configure problem */
  57. #endif
  58. #else
  59. #include <my_config.h>
  60. #if defined(__cplusplus) && defined(inline)
  61. #undef inline /* fix configure problem */
  62. #endif
  63. #endif /* _WIN32... */
  64. /*
  65.   The macros below are borrowed from include/linux/compiler.h in the
  66.   Linux kernel. Use them to indicate the likelyhood of the truthfulness
  67.   of a condition. This serves two purposes - newer versions of gcc will be
  68.   able to optimize for branch predication, which could yield siginficant
  69.   performance gains in frequently executed sections of the code, and the
  70.   other reason to use them is for documentation
  71. */
  72. #if !defined(__GNUC__) || (__GNUC__ == 2 && __GNUC_MINOR__ < 96)
  73. #define __builtin_expect(x, expected_value) (x)
  74. #endif
  75. #define likely(x) __builtin_expect((x),1)
  76. #define unlikely(x) __builtin_expect((x),0)
  77. /* Fix problem with S_ISLNK() on Linux */
  78. #if defined(HAVE_LINUXTHREADS)
  79. #undef  _GNU_SOURCE
  80. #define _GNU_SOURCE 1
  81. #endif
  82. /* The client defines this to avoid all thread code */
  83. #if defined(UNDEF_THREADS_HACK)
  84. #undef THREAD
  85. #undef HAVE_mit_thread
  86. #undef HAVE_LINUXTHREADS
  87. #undef HAVE_UNIXWARE7_THREADS
  88. #endif
  89. #ifdef HAVE_THREADS_WITHOUT_SOCKETS
  90. /* MIT pthreads does not work with unix sockets */
  91. #undef HAVE_SYS_UN_H
  92. #endif
  93. #define __EXTENSIONS__ 1 /* We want some extension */
  94. #ifndef __STDC_EXT__
  95. #define __STDC_EXT__ 1          /* To get large file support on hpux */
  96. #endif
  97. #if defined(THREAD) && !defined(__WIN__) && !defined(OS2)
  98. #ifndef _POSIX_PTHREAD_SEMANTICS
  99. #define _POSIX_PTHREAD_SEMANTICS /* We want posix threads */
  100. #endif
  101. #if !defined(SCO)
  102. #define _REENTRANT 1 /* Some thread libraries require this */
  103. #endif
  104. #if !defined(_THREAD_SAFE) && !defined(_AIX)
  105. #define _THREAD_SAFE            /* Required for OSF1 */
  106. #endif
  107. #ifndef HAVE_mit_thread
  108. #ifdef HAVE_UNIXWARE7_THREADS
  109. #include <thread.h>
  110. #else
  111. #include <pthread.h> /* AIX must have this included first */
  112. #endif /* HAVE_UNIXWARE7_THREADS */
  113. #endif /* HAVE_mit_thread */
  114. #if !defined(SCO) && !defined(_REENTRANT)
  115. #define _REENTRANT 1 /* Threads requires reentrant code */
  116. #endif
  117. #endif /* THREAD */
  118. /* Go around some bugs in different OS and compilers */
  119. #ifdef _AIX /* By soren@t.dk */
  120. #define _H_STRINGS
  121. #define _SYS_STREAM_H
  122. /* #define _AIX32_CURSES */ /* XXX: this breaks AIX 4.3.3 (others?). */
  123. #define ulonglong2double(A) my_ulonglong2double(A)
  124. #define my_off_t2double(A)  my_ulonglong2double(A)
  125. C_MODE_START
  126. double my_ulonglong2double(unsigned long long A);
  127. C_MODE_END
  128. #endif /* _AIX */
  129. #ifdef HAVE_BROKEN_SNPRINTF /* HPUX 10.20 don't have this defined */
  130. #undef HAVE_SNPRINTF
  131. #endif
  132. #ifdef HAVE_BROKEN_PREAD /* These doesn't work on HPUX 11.x */
  133. #undef HAVE_PREAD
  134. #undef HAVE_PWRITE
  135. #endif
  136. #if defined(HAVE_BROKEN_INLINE) && !defined(__cplusplus)
  137. #undef inline
  138. #define inline
  139. #endif
  140. #ifdef UNDEF_HAVE_GETHOSTBYNAME_R /* For OSF4.x */
  141. #undef HAVE_GETHOSTBYNAME_R
  142. #endif
  143. #ifdef UNDEF_HAVE_INITGROUPS /* For AIX 4.3 */
  144. #undef HAVE_INITGROUPS
  145. #endif
  146. /* gcc/egcs issues */
  147. #if defined(__GNUC) && defined(__EXCEPTIONS)
  148. #error "Please add -fno-exceptions to CXXFLAGS and reconfigure/recompile"
  149. #endif
  150. /* Fix a bug in gcc 2.8.0 on IRIX 6.2 */
  151. #if SIZEOF_LONG == 4 && defined(__LONG_MAX__)
  152. #undef __LONG_MAX__             /* Is a longlong value in gcc 2.8.0 ??? */
  153. #define __LONG_MAX__ 2147483647
  154. #endif
  155. /* Fix problem when linking c++ programs with gcc 3.x */
  156. #ifdef DEFINE_CXA_PURE_VIRTUAL
  157. #define FIX_GCC_LINKING_PROBLEM extern "C" { int __cxa_pure_virtual() {return 0;} }
  158. #else
  159. #define FIX_GCC_LINKING_PROBLEM
  160. #endif
  161. /* egcs 1.1.2 has a problem with memcpy on Alpha */
  162. #if defined(__GNUC__) && defined(__alpha__) && ! (__GNUC__ > 2 || (__GNUC__ == 2 &&  __GNUC_MINOR__ >= 95))
  163. #define BAD_MEMCPY
  164. #endif
  165. /* In Linux-alpha we have atomic.h if we are using gcc */
  166. #if defined(HAVE_LINUXTHREADS) && defined(__GNUC__) && defined(__alpha__) && (__GNUC__ > 2 || ( __GNUC__ == 2 &&  __GNUC_MINOR__ >= 95)) && !defined(HAVE_ATOMIC_ADD)
  167. #define HAVE_ATOMIC_ADD
  168. #define HAVE_ATOMIC_SUB
  169. #endif
  170. /* In Linux-ia64 including atomic.h will give us an error */
  171. #if (defined(HAVE_LINUXTHREADS) && defined(__GNUC__) && (defined(__ia64__)||defined(__powerpc64__))) || !defined(THREAD)
  172. #undef HAVE_ATOMIC_ADD
  173. #undef HAVE_ATOMIC_SUB
  174. #endif
  175. #if defined(_lint) && !defined(lint)
  176. #define lint
  177. #endif
  178. #if SIZEOF_LONG_LONG > 4 && !defined(_LONG_LONG)
  179. #define _LONG_LONG 1 /* For AIX string library */
  180. #endif
  181. #ifndef stdin
  182. #include <stdio.h>
  183. #endif
  184. #ifdef HAVE_STDLIB_H
  185. #include <stdlib.h>
  186. #endif
  187. #ifdef HAVE_STDDEF_H
  188. #include <stddef.h>
  189. #endif
  190. #include "math.h"
  191. #ifdef HAVE_LIMITS_H
  192. #include <limits.h>
  193. #endif
  194. #ifdef HAVE_FLOAT_H
  195. #include <float.h>
  196. #endif
  197. #ifdef HAVE_SYS_TYPES_H
  198. #include <sys/types.h>
  199. #endif
  200. #ifdef HAVE_FCNTL_H
  201. #include <fcntl.h>
  202. #endif
  203. #ifdef HAVE_SYS_TIMEB_H
  204. #include <sys/timeb.h> /* Avoid warnings on SCO */
  205. #endif
  206. #if TIME_WITH_SYS_TIME
  207. # include <sys/time.h>
  208. # include <time.h>
  209. #else
  210. # if HAVE_SYS_TIME_H
  211. #  include <sys/time.h>
  212. # else
  213. #  include <time.h>
  214. # endif
  215. #endif /* TIME_WITH_SYS_TIME */
  216. #ifdef HAVE_UNISTD_H
  217. #if defined(HAVE_OPENSSL) && !defined(__FreeBSD__) && !defined(NeXT) && !defined(__OpenBSD__)
  218. #define crypt unistd_crypt
  219. #endif
  220. #include <unistd.h>
  221. #ifdef HAVE_OPENSSL
  222. #undef crypt
  223. #endif
  224. #endif
  225. #if defined(__cplusplus) && defined(NO_CPLUSPLUS_ALLOCA)
  226. #undef HAVE_ALLOCA
  227. #undef HAVE_ALLOCA_H
  228. #endif
  229. #ifdef HAVE_ALLOCA_H
  230. #include <alloca.h>
  231. #endif
  232. #ifdef HAVE_ATOMIC_ADD
  233. #define __SMP__
  234. #ifdef HAVE_LINUX_CONFIG_H
  235. #include <linux/config.h> /* May define CONFIG_SMP */
  236. #endif
  237. #ifndef CONFIG_SMP
  238. #define CONFIG_SMP
  239. #endif
  240. C_MODE_START
  241. #include <asm/atomic.h>
  242. C_MODE_END
  243. #endif
  244. #include <errno.h> /* Recommended by debian */
  245. /* We need the following to go around a problem with openssl on solaris */
  246. #if defined(HAVE_CRYPT_H)
  247. #include <crypt.h>
  248. #endif
  249. /* Go around some bugs in different OS and compilers */
  250. #if defined(_HPUX_SOURCE) && defined(HAVE_SYS_STREAM_H)
  251. #include <sys/stream.h> /* HPUX 10.20 defines ulong here. UGLY !!! */
  252. #define HAVE_ULONG
  253. #endif
  254. #ifdef DONT_USE_FINITE /* HPUX 11.x has is_finite() */
  255. #undef HAVE_FINITE
  256. #endif
  257. #if defined(HPUX10) && defined(_LARGEFILE64_SOURCE) && defined(THREAD)
  258. /* Fix bug in setrlimit */
  259. #undef setrlimit
  260. #define setrlimit cma_setrlimit64
  261. #endif
  262. #ifdef __QNXNTO__
  263. /* This has to be after include limits.h */
  264. #define HAVE_ERRNO_AS_DEFINE
  265. #define HAVE_FCNTL_LOCK
  266. #undef  HAVE_FINITE
  267. #undef  LONGLONG_MIN            /* These get wrongly defined in QNX 6.2 */
  268. #undef  LONGLONG_MAX            /* standard system library 'limits.h' */
  269. #endif
  270. /* We can not live without the following defines */
  271. #define USE_MYFUNC 1 /* Must use syscall indirection */
  272. #define MASTER 1 /* Compile without unireg */
  273. #define ENGLISH 1 /* Messages in English */
  274. #define POSIX_MISTAKE 1 /* regexp: Fix stupid spec error */
  275. #define USE_REGEX 1 /* We want the use the regex library */
  276. /* Do not define for ultra sparcs */
  277. #ifndef OS2
  278. #define USE_BMOVE512 1 /* Use this unless system bmove is faster */
  279. #endif
  280. /* Paranoid settings. Define I_AM_PARANOID if you are paranoid */
  281. #ifdef I_AM_PARANOID
  282. #define DONT_ALLOW_USER_CHANGE 1
  283. #define DONT_USE_MYSQL_PWD 1
  284. #endif
  285. /* Does the system remember a signal handler after a signal ? */
  286. #ifndef HAVE_BSD_SIGNALS
  287. #define DONT_REMEMBER_SIGNAL
  288. #endif
  289. /* Define void to stop lint from generating "null effekt" comments */
  290. #ifndef DONT_DEFINE_VOID
  291. #ifdef _lint
  292. int __void__;
  293. #define VOID(X) (__void__ = (int) (X))
  294. #else
  295. #undef VOID
  296. #define VOID(X) (X)
  297. #endif
  298. #endif /* DONT_DEFINE_VOID */
  299. #if defined(_lint) || defined(FORCE_INIT_OF_VARS)
  300. #define LINT_INIT(var) var=0 /* No uninitialize-warning */
  301. #else
  302. #define LINT_INIT(var)
  303. #endif
  304. /* Define some useful general macros */
  305. #if defined(__cplusplus) && defined(__GNUC__)
  306. #define max(a, b) ((a) >? (b))
  307. #define min(a, b) ((a) <? (b))
  308. #elif !defined(max)
  309. #define max(a, b) ((a) > (b) ? (a) : (b))
  310. #define min(a, b) ((a) < (b) ? (a) : (b))
  311. #endif
  312. #if defined(__EMX__) || !defined(HAVE_UINT)
  313. typedef unsigned int uint;
  314. typedef unsigned short ushort;
  315. #endif
  316. #define CMP_NUM(a,b)    (((a) < (b)) ? -1 : ((a) == (b)) ? 0 : 1)
  317. #define sgn(a) (((a) < 0) ? -1 : ((a) > 0) ? 1 : 0)
  318. #define swap(t,a,b) { register t dummy; dummy = a; a = b; b = dummy; }
  319. #define test(a) ((a) ? 1 : 0)
  320. #define set_if_bigger(a,b)  { if ((a) < (b)) (a)=(b); }
  321. #define set_if_smaller(a,b) { if ((a) > (b)) (a)=(b); }
  322. #define test_all_bits(a,b) (((a) & (b)) == (b))
  323. #define set_bits(type, bit_count) (sizeof(type)*8 <= (bit_count) ? ~(type) 0 : ((((type) 1) << (bit_count)) - (type) 1))
  324. #define array_elements(A) ((uint) (sizeof(A)/sizeof(A[0])))
  325. #ifndef HAVE_RINT
  326. #define rint(A) floor((A)+(((A) < 0)? -0.5 : 0.5))
  327. #endif
  328. /* Define some general constants */
  329. #ifndef TRUE
  330. #define TRUE (1) /* Logical true */
  331. #define FALSE (0) /* Logical false */
  332. #endif
  333. #if defined(__GNUC__)
  334. #define function_volatile volatile
  335. #define my_reinterpret_cast(A) reinterpret_cast<A>
  336. #define my_const_cast(A) const_cast<A>
  337. #elif !defined(my_reinterpret_cast)
  338. #define my_reinterpret_cast(A) (A)
  339. #define my_const_cast(A) (A)
  340. #endif
  341. #if !defined(__attribute__) && (defined(__cplusplus) || !defined(__GNUC__)  || __GNUC__ == 2 && __GNUC_MINOR__ < 8)
  342. #define __attribute__(A)
  343. #endif
  344. /* From old s-system.h */
  345. /*
  346.   Support macros for non ansi & other old compilers. Since such
  347.   things are no longer supported we do nothing. We keep then since
  348.   some of our code may still be needed to upgrade old customers.
  349. */
  350. #define _VARARGS(X) X
  351. #define _STATIC_VARARGS(X) X
  352. #define _PC(X) X
  353. #if defined(DBUG_ON) && defined(DBUG_OFF)
  354. #undef DBUG_OFF
  355. #endif
  356. #if defined(_lint) && !defined(DBUG_OFF)
  357. #define DBUG_OFF
  358. #endif
  359. #include <my_dbug.h>
  360. #define MIN_ARRAY_SIZE 0 /* Zero or One. Gcc allows zero*/
  361. #define ASCII_BITS_USED 8 /* Bit char used */
  362. #define NEAR_F /* No near function handling */
  363. /* Some types that is different between systems */
  364. typedef int File; /* File descriptor */
  365. #ifndef Socket_defined
  366. typedef int my_socket; /* File descriptor for sockets */
  367. #define INVALID_SOCKET -1
  368. #endif
  369. /* Type for fuctions that handles signals */
  370. #define sig_handler RETSIGTYPE
  371. C_MODE_START
  372. typedef void (*sig_return)();/* Returns type from signal */
  373. C_MODE_END
  374. #if defined(__GNUC__) && !defined(_lint)
  375. typedef char pchar; /* Mixed prototypes can take char */
  376. typedef char puchar; /* Mixed prototypes can take char */
  377. typedef char pbool; /* Mixed prototypes can take char */
  378. typedef short pshort; /* Mixed prototypes can take short int */
  379. typedef float pfloat; /* Mixed prototypes can take float */
  380. #else
  381. typedef int pchar; /* Mixed prototypes can't take char */
  382. typedef uint puchar; /* Mixed prototypes can't take char */
  383. typedef int pbool; /* Mixed prototypes can't take char */
  384. typedef int pshort; /* Mixed prototypes can't take short int */
  385. typedef double pfloat; /* Mixed prototypes can't take float */
  386. #endif
  387. C_MODE_START
  388. typedef int (*qsort_cmp)(const void *,const void *);
  389. typedef int (*qsort_cmp2)(void*, const void *,const void *);
  390. C_MODE_END
  391. #ifdef HAVE_mit_thread
  392. #define qsort_t void
  393. #undef QSORT_TYPE_IS_VOID
  394. #define QSORT_TYPE_IS_VOID
  395. #else
  396. #define qsort_t RETQSORTTYPE /* Broken GCC cant handle typedef !!!! */
  397. #endif
  398. #ifdef HAVE_mit_thread
  399. #define size_socket socklen_t /* Type of last arg to accept */
  400. #else
  401. #ifdef HAVE_SYS_SOCKET_H
  402. #include <sys/socket.h>
  403. #endif
  404. typedef SOCKET_SIZE_TYPE size_socket;
  405. #endif
  406. #ifndef SOCKOPT_OPTLEN_TYPE
  407. #define SOCKOPT_OPTLEN_TYPE size_socket
  408. #endif
  409. /* file create flags */
  410. #ifndef O_SHARE /* Probably not windows */
  411. #define O_SHARE 0 /* Flag to my_open for shared files */
  412. #ifndef O_BINARY
  413. #define O_BINARY 0 /* Flag to my_open for binary files */
  414. #endif
  415. #ifndef FILE_BINARY
  416. #define FILE_BINARY O_BINARY /* Flag to my_fopen for binary streams */
  417. #endif
  418. #ifdef HAVE_FCNTL
  419. #define HAVE_FCNTL_LOCK
  420. #define F_TO_EOF 0L /* Param to lockf() to lock rest of file */
  421. #endif
  422. #endif /* O_SHARE */
  423. #ifndef O_TEMPORARY
  424. #define O_TEMPORARY 0
  425. #endif
  426. #ifndef O_SHORT_LIVED
  427. #define O_SHORT_LIVED 0
  428. #endif
  429. /* #define USE_RECORD_LOCK */
  430. /* Unsigned types supported by the compiler */
  431. #define UNSINT8 /* unsigned int8 (char) */
  432. #define UNSINT16 /* unsigned int16 */
  433. #define UNSINT32 /* unsigned int32 */
  434. /* General constants */
  435. #define SC_MAXWIDTH 256 /* Max width of screen (for error messages) */
  436. #define FN_LEN 256 /* Max file name len */
  437. #define FN_HEADLEN 253 /* Max length of filepart of file name */
  438. #define FN_EXTLEN 20 /* Max length of extension (part of FN_LEN) */
  439. #define FN_REFLEN 512 /* Max length of full path-name */
  440. #define FN_EXTCHAR '.'
  441. #define FN_HOMELIB '~' /* ~/ is used as abbrev for home dir */
  442. #define FN_CURLIB '.' /* ./ is used as abbrev for current dir */
  443. #define FN_PARENTDIR ".." /* Parentdirectory; Must be a string */
  444. #define FN_DEVCHAR ':'
  445. #ifndef FN_LIBCHAR
  446. #ifdef __EMX__
  447. #define FN_LIBCHAR '\'
  448. #define FN_ROOTDIR "\"
  449. #else
  450. #define FN_LIBCHAR '/'
  451. #define FN_ROOTDIR "/"
  452. #endif
  453. #define MY_NFILE 1024 /* This is only used to save filenames */
  454. #endif
  455. /* #define EXT_IN_LIBNAME     */
  456. /* #define FN_NO_CASE_SENCE   */
  457. /* #define FN_UPPER_CASE TRUE */
  458. /*
  459.   Io buffer size; Must be a power of 2 and a multiple of 512. May be
  460.   smaller what the disk page size. This influences the speed of the
  461.   isam btree library. eg to big to slow.
  462. */
  463. #define IO_SIZE 4096
  464. /*
  465.   How much overhead does malloc have. The code often allocates
  466.   something like 1024-MALLOC_OVERHEAD bytes
  467. */
  468. #ifdef SAFEMALLOC
  469. #define MALLOC_OVERHEAD (8+24+4)
  470. #else
  471. #define MALLOC_OVERHEAD 8
  472. #endif
  473. /* get memory in huncs */
  474. #define ONCE_ALLOC_INIT (uint) (4096-MALLOC_OVERHEAD)
  475. /* Typical record cash */
  476. #define RECORD_CACHE_SIZE (uint) (64*1024-MALLOC_OVERHEAD)
  477. /* Typical key cash */
  478. #define KEY_CACHE_SIZE (uint) (8*1024*1024-MALLOC_OVERHEAD)
  479. /* Some things that this system doesn't have */
  480. #define NO_HASH /* Not needed anymore */
  481. #ifdef __WIN__
  482. #define NO_DIR_LIBRARY /* Not standar dir-library */
  483. #define USE_MY_STAT_STRUCT /* For my_lib */
  484. #endif
  485. /* Some things that this system does have */
  486. #ifndef HAVE_ITOA
  487. #define USE_MY_ITOA /* There is no itoa */
  488. #endif
  489. /* Some defines of functions for portability */
  490. #ifndef HAVE_ATOD
  491. #define atod atof
  492. #endif
  493. #ifdef USE_MY_ATOF
  494. #define atof my_atof
  495. extern void init_my_atof(void);
  496. extern double my_atof(const char*);
  497. #endif
  498. #undef remove /* Crashes MySQL on SCO 5.0.0 */
  499. #ifndef __WIN__
  500. #ifdef OS2
  501. #define closesocket(A) soclose(A)
  502. #else
  503. #define closesocket(A) close(A)
  504. #endif
  505. #ifndef ulonglong2double
  506. #define ulonglong2double(A) ((double) (ulonglong) (A))
  507. #define my_off_t2double(A)  ((double) (my_off_t) (A))
  508. #endif
  509. #endif
  510. #ifndef offsetof
  511. #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
  512. #endif
  513. #define ulong_to_double(X) ((double) (ulong) (X))
  514. #define SET_STACK_SIZE(X) /* Not needed on real machines */
  515. #if !defined(HAVE_mit_thread) && !defined(HAVE_STRTOK_R)
  516. #define strtok_r(A,B,C) strtok((A),(B))
  517. #endif
  518. /* Remove some things that mit_thread break or doesn't support */
  519. #if defined(HAVE_mit_thread) && defined(THREAD)
  520. #undef HAVE_PREAD
  521. #undef HAVE_REALPATH
  522. #undef HAVE_MLOCK
  523. #undef HAVE_TEMPNAM /* Use ours */
  524. #undef HAVE_PTHREAD_SETPRIO
  525. #undef HAVE_FTRUNCATE
  526. #undef HAVE_READLINK
  527. #endif
  528. /* This is from the old m-machine.h file */
  529. #if SIZEOF_LONG_LONG > 4
  530. #define HAVE_LONG_LONG 1
  531. #endif
  532. /*
  533.   Some pre-ANSI-C99 systems like AIX 5.1 and Linux/GCC 2.95 define
  534.   ULONGLONG_MAX, LONGLONG_MIN, LONGLONG_MAX; we use them if they're defined.
  535.   Also on Windows we define these constants by hand in config-win.h.
  536. */
  537. #if defined(HAVE_LONG_LONG) && !defined(LONGLONG_MIN)
  538. #define LONGLONG_MIN ((long long) 0x8000000000000000LL)
  539. #define LONGLONG_MAX ((long long) 0x7FFFFFFFFFFFFFFFLL)
  540. #endif
  541. #if defined(HAVE_LONG_LONG) && !defined(ULONGLONG_MAX)
  542. /* First check for ANSI C99 definition: */
  543. #ifdef ULLONG_MAX
  544. #define ULONGLONG_MAX  ULLONG_MAX
  545. #else
  546. #define ULONGLONG_MAX ((unsigned long long)(~0ULL))
  547. #endif
  548. #endif /* defined (HAVE_LONG_LONG) && !defined(ULONGLONG_MAX)*/
  549. #if SIZEOF_LONG == 4
  550. #define INT_MIN32 (long) 0x80000000L
  551. #define INT_MAX32 (long) 0x7FFFFFFFL
  552. #define INT_MIN24 ((long) 0xff800000L)
  553. #define INT_MAX24 0x007fffffL
  554. #define INT_MIN16 ((short int) 0x8000)
  555. #define INT_MAX16 0x7FFF
  556. #define INT_MIN8 ((char) 0x80)
  557. #define INT_MAX8 ((char) 0x7F)
  558. #else  /* Probably Alpha */
  559. #define INT_MIN32 ((long) (int) 0x80000000)
  560. #define INT_MAX32 ((long) (int) 0x7FFFFFFF)
  561. #define INT_MIN24 ((long) (int) 0xff800000)
  562. #define INT_MAX24 ((long) (int) 0x007fffff)
  563. #define INT_MIN16 ((short int) 0xffff8000)
  564. #define INT_MAX16 ((short int) 0x00007FFF)
  565. #endif
  566. /* From limits.h instead */
  567. #ifndef DBL_MIN
  568. #define DBL_MIN 4.94065645841246544e-324
  569. #define FLT_MIN ((float)1.40129846432481707e-45)
  570. #endif
  571. #ifndef DBL_MAX
  572. #define DBL_MAX 1.79769313486231470e+308
  573. #define FLT_MAX ((float)3.40282346638528860e+38)
  574. #endif
  575. /*
  576.   Max size that must be added to a so that we know Size to make
  577.   adressable obj.
  578. */
  579. #if SIZEOF_CHARP == 4
  580. typedef long my_ptrdiff_t;
  581. #else
  582. typedef long long my_ptrdiff_t;
  583. #endif
  584. #define MY_ALIGN(A,L) (((A) + (L) - 1) & ~((L) - 1))
  585. #define ALIGN_SIZE(A) MY_ALIGN((A),sizeof(double))
  586. /* Size to make adressable obj. */
  587. #define ALIGN_PTR(A, t) ((t*) MY_ALIGN((A),sizeof(t)))
  588.  /* Offset of filed f in structure t */
  589. #define OFFSET(t, f) ((size_t)(char *)&((t *)0)->f)
  590. #define ADD_TO_PTR(ptr,size,type) (type) ((byte*) (ptr)+size)
  591. #define PTR_BYTE_DIFF(A,B) (my_ptrdiff_t) ((byte*) (A) - (byte*) (B))
  592. #define NullS (char *) 0
  593. /* Nowdays we do not support MessyDos */
  594. #ifndef NEAR
  595. #define NEAR /* Who needs segments ? */
  596. #define FAR /* On a good machine */
  597. #ifndef HUGE_PTR
  598. #define HUGE_PTR
  599. #endif
  600. #endif
  601. #if defined(__IBMC__) || defined(__IBMCPP__)
  602. #define STDCALL _System _Export
  603. #elif !defined( STDCALL)
  604. #define STDCALL
  605. #endif
  606. /* Typdefs for easyier portability */
  607. #if defined(VOIDTYPE)
  608. typedef void *gptr; /* Generic pointer */
  609. #else
  610. typedef char *gptr; /* Generic pointer */
  611. #endif
  612. #ifndef HAVE_INT_8_16_32
  613. typedef char int8; /* Signed integer >= 8 bits */
  614. typedef short int16; /* Signed integer >= 16 bits */
  615. #endif
  616. #ifndef HAVE_UCHAR
  617. typedef unsigned char uchar; /* Short for unsigned char */
  618. #endif
  619. typedef unsigned char uint8; /* Short for unsigned integer >= 8  bits */
  620. typedef unsigned short uint16; /* Short for unsigned integer >= 16 bits */
  621. #if SIZEOF_INT == 4
  622. #ifndef HAVE_INT_8_16_32
  623. typedef int int32;
  624. #endif
  625. typedef unsigned int uint32; /* Short for unsigned integer >= 32 bits */
  626. #elif SIZEOF_LONG == 4
  627. #ifndef HAVE_INT_8_16_32
  628. typedef long int32;
  629. #endif
  630. typedef unsigned long uint32; /* Short for unsigned integer >= 32 bits */
  631. #else
  632. error "Neither int or long is of 4 bytes width"
  633. #endif
  634. #if !defined(HAVE_ULONG) && !defined(HAVE_LINUXTHREADS) && !defined(__USE_MISC)
  635. typedef unsigned long ulong;   /* Short for unsigned long */
  636. #endif
  637. #ifndef longlong_defined
  638. #if defined(HAVE_LONG_LONG) && SIZEOF_LONG != 8
  639. typedef unsigned long long int ulonglong; /* ulong or unsigned long long */
  640. typedef long long int longlong;
  641. #else
  642. typedef unsigned long ulonglong;   /* ulong or unsigned long long */
  643. typedef long longlong;
  644. #endif
  645. #endif
  646. /* typedef used for length of string;  Should be unsigned! */
  647. typedef ulong size_str;
  648. #ifdef USE_RAID
  649. /*
  650.   The following is done with a if to not get problems with pre-processors
  651.   with late define evaluation
  652. */
  653. #if SIZEOF_OFF_T == 4
  654. #define SYSTEM_SIZEOF_OFF_T 4
  655. #else
  656. #define SYSTEM_SIZEOF_OFF_T 8
  657. #endif
  658. #undef  SIZEOF_OFF_T
  659. #define SIZEOF_OFF_T     8
  660. #else
  661. #define SYSTEM_SIZEOF_OFF_T SIZEOF_OFF_T
  662. #endif /* USE_RAID */
  663. #if SIZEOF_OFF_T > 4
  664. typedef ulonglong my_off_t;
  665. #else
  666. typedef unsigned long my_off_t;
  667. #endif
  668. #define MY_FILEPOS_ERROR (~(my_off_t) 0)
  669. #if !defined(__WIN__) && !defined(OS2)
  670. typedef off_t os_off_t;
  671. #endif
  672. #if defined(__WIN__)
  673. #define socket_errno WSAGetLastError()
  674. #define SOCKET_EINTR WSAEINTR
  675. #define SOCKET_EAGAIN WSAEINPROGRESS
  676. #define SOCKET_EWOULDBLOCK WSAEINPROGRESS
  677. #define SOCKET_ENFILE ENFILE
  678. #define SOCKET_EMFILE EMFILE
  679. #elif defined(OS2)
  680. #define socket_errno sock_errno()
  681. #define SOCKET_EINTR SOCEINTR
  682. #define SOCKET_EAGAIN SOCEINPROGRESS
  683. #define SOCKET_EWOULDBLOCK SOCEWOULDBLOCK
  684. #define SOCKET_ENFILE SOCENFILE
  685. #define SOCKET_EMFILE SOCEMFILE
  686. #define closesocket(A) soclose(A)
  687. #else /* Unix */
  688. #define socket_errno errno
  689. #define closesocket(A) close(A)
  690. #define SOCKET_EINTR EINTR
  691. #define SOCKET_EAGAIN EAGAIN
  692. #define SOCKET_EWOULDBLOCK EWOULDBLOCK
  693. #define SOCKET_ENFILE ENFILE
  694. #define SOCKET_EMFILE EMFILE
  695. #endif
  696. typedef uint8 int7; /* Most effective integer 0 <= x <= 127 */
  697. typedef short int15; /* Most effective integer 0 <= x <= 32767 */
  698. typedef char *my_string; /* String of characters */
  699. typedef unsigned long size_s; /* Size of strings (In string-funcs) */
  700. typedef int myf; /* Type of MyFlags in my_funcs */
  701. #ifndef byte_defined
  702. typedef char byte; /* Smallest addressable unit */
  703. #endif
  704. typedef char my_bool; /* Small bool */
  705. #if !defined(bool) && !defined(bool_defined) && (!defined(HAVE_BOOL) || !defined(__cplusplus))
  706. typedef char bool; /* Ordinary boolean values 0 1 */
  707. #endif
  708. /* Macros for converting *constants* to the right type */
  709. #define INT8(v) (int8) (v)
  710. #define INT16(v) (int16) (v)
  711. #define INT32(v) (int32) (v)
  712. #define MYF(v) (myf) (v)
  713. #ifndef LL
  714. #ifdef HAVE_LONG_LONG
  715. #define LL(A) A ## LL
  716. #else
  717. #define LL(A) A ## L
  718. #endif
  719. #endif
  720. /*
  721.   Defines to make it possible to prioritize register assignments. No
  722.   longer that important with modern compilers.
  723. */
  724. #ifndef USING_X
  725. #define reg1 register
  726. #define reg2 register
  727. #define reg3 register
  728. #define reg4 register
  729. #define reg5 register
  730. #define reg6 register
  731. #define reg7 register
  732. #define reg8 register
  733. #define reg9 register
  734. #define reg10 register
  735. #define reg11 register
  736. #define reg12 register
  737. #define reg13 register
  738. #define reg14 register
  739. #define reg15 register
  740. #define reg16 register
  741. #endif
  742. /*
  743.   Sometimes we want to make sure that the variable is not put into
  744.   a register in debugging mode so we can see its value in the core
  745. */
  746. #ifndef DBUG_OFF
  747. #define dbug_volatile volatile
  748. #else
  749. #define dbug_volatile
  750. #endif
  751. /* Defines for time function */
  752. #define SCALE_SEC 100
  753. #define SCALE_USEC 10000
  754. #define MY_HOW_OFTEN_TO_ALARM 2 /* How often we want info on screen */
  755. #define MY_HOW_OFTEN_TO_WRITE 1000 /* How often we want info on screen */
  756. #ifndef set_timespec
  757. #ifdef HAVE_TIMESPEC_TS_SEC
  758. #define set_timespec(ABSTIME,SEC) { (ABSTIME).ts_sec=time(0) + (time_t) (SEC); (ABSTIME).ts_nsec=0; }
  759. #else
  760. #define set_timespec(ABSTIME,SEC) 
  761. {
  762.   struct timeval tv;
  763.   gettimeofday(&tv,0);
  764.   (ABSTIME).tv_sec=tv.tv_sec+(time_t) (SEC);
  765.   (ABSTIME).tv_nsec=tv.tv_usec*1000;
  766. }
  767. #endif /* HAVE_TIMESPEC_TS_SEC */
  768. #endif /* set_timespec */
  769. /*
  770.   Define-funktions for reading and storing in machine independent format
  771.   (low byte first)
  772. */
  773. /* Optimized store functions for Intel x86 */
  774. #if defined(__i386__) && !defined(_WIN64)
  775. #define sint2korr(A) (*((int16 *) (A)))
  776. #define sint3korr(A) ((int32) ((((uchar) (A)[2]) & 128) ? 
  777.   (((uint32) 255L << 24) | 
  778.    (((uint32) (uchar) (A)[2]) << 16) |
  779.    (((uint32) (uchar) (A)[1]) << 8) | 
  780.    ((uint32) (uchar) (A)[0])) : 
  781.   (((uint32) (uchar) (A)[2]) << 16) |
  782.   (((uint32) (uchar) (A)[1]) << 8) | 
  783.   ((uint32) (uchar) (A)[0])))
  784. #define sint4korr(A) (*((long *) (A)))
  785. #define uint2korr(A) (*((uint16 *) (A)))
  786. #ifdef HAVE_purify
  787. #define uint3korr(A) (uint32) (((uint32) ((uchar) (A)[0])) +
  788.   (((uint32) ((uchar) (A)[1])) << 8) +
  789.   (((uint32) ((uchar) (A)[2])) << 16))
  790. #else
  791. #define uint3korr(A) (long) (*((unsigned long *) (A)) & 0xFFFFFF)
  792. #endif
  793. #define uint4korr(A) (*((unsigned long *) (A)))
  794. #define uint5korr(A) ((ulonglong)(((uint32) ((uchar) (A)[0])) +
  795.     (((uint32) ((uchar) (A)[1])) << 8) +
  796.     (((uint32) ((uchar) (A)[2])) << 16) +
  797.     (((uint32) ((uchar) (A)[3])) << 24)) +
  798.       (((ulonglong) ((uchar) (A)[4])) << 32))
  799. #define uint8korr(A) (*((ulonglong *) (A)))
  800. #define sint8korr(A) (*((longlong *) (A)))
  801. #define int2store(T,A) *((uint16*) (T))= (uint16) (A)
  802. #define int3store(T,A) { *(T)=  (uchar) ((A));
  803.   *(T+1)=(uchar) (((uint) (A) >> 8));
  804.   *(T+2)=(uchar) (((A) >> 16)); }
  805. #define int4store(T,A) *((long *) (T))= (long) (A)
  806. #define int5store(T,A) { *(T)= (uchar)((A));
  807.   *((T)+1)=(uchar) (((A) >> 8));
  808.   *((T)+2)=(uchar) (((A) >> 16));
  809.   *((T)+3)=(uchar) (((A) >> 24)); 
  810.   *((T)+4)=(uchar) (((A) >> 32)); }
  811. #define int8store(T,A) *((ulonglong *) (T))= (ulonglong) (A)
  812. typedef union {
  813.   double v;
  814.   long m[2];
  815. } doubleget_union;
  816. #define doubleget(V,M)
  817. { doubleget_union _tmp; 
  818.   _tmp.m[0] = *((long*)(M)); 
  819.   _tmp.m[1] = *(((long*) (M))+1); 
  820.   (V) = _tmp.v; }
  821. #define doublestore(T,V) { *((long *) T) = ((doubleget_union *)&V)->m[0]; 
  822.    *(((long *) T)+1) = ((doubleget_union *)&V)->m[1]; }
  823. #define float4get(V,M) { *((long *) &(V)) = *((long*) (M)); }
  824. #define float8get(V,M) doubleget((V),(M))
  825. #define float4store(V,M) memcpy((byte*) V,(byte*) (&M),sizeof(float))
  826. #define float8store(V,M) doublestore((V),(M))
  827. #endif /* __i386__ */
  828. #ifndef sint2korr
  829. #define sint2korr(A) (int16) (((int16) ((uchar) (A)[0])) +
  830.  ((int16) ((int16) (A)[1]) << 8))
  831. #define sint3korr(A) ((int32) ((((uchar) (A)[2]) & 128) ? 
  832.   (((uint32) 255L << 24) | 
  833.    (((uint32) (uchar) (A)[2]) << 16) |
  834.    (((uint32) (uchar) (A)[1]) << 8) | 
  835.    ((uint32) (uchar) (A)[0])) : 
  836.   (((uint32) (uchar) (A)[2]) << 16) |
  837.   (((uint32) (uchar) (A)[1]) << 8) | 
  838.   ((uint32) (uchar) (A)[0])))
  839. #define sint4korr(A) (int32) (((int32) ((uchar) (A)[0])) +
  840. (((int32) ((uchar) (A)[1]) << 8)) +
  841. (((int32) ((uchar) (A)[2]) << 16)) +
  842. (((int32) ((int16) (A)[3]) << 24)))
  843. #define sint8korr(A) (longlong) uint8korr(A)
  844. #define uint2korr(A) (uint16) (((uint16) ((uchar) (A)[0])) +
  845.   ((uint16) ((uchar) (A)[1]) << 8))
  846. #define uint3korr(A) (uint32) (((uint32) ((uchar) (A)[0])) +
  847.   (((uint32) ((uchar) (A)[1])) << 8) +
  848.   (((uint32) ((uchar) (A)[2])) << 16))
  849. #define uint4korr(A) (uint32) (((uint32) ((uchar) (A)[0])) +
  850.   (((uint32) ((uchar) (A)[1])) << 8) +
  851.   (((uint32) ((uchar) (A)[2])) << 16) +
  852.   (((uint32) ((uchar) (A)[3])) << 24))
  853. #define uint5korr(A) ((ulonglong)(((uint32) ((uchar) (A)[0])) +
  854.     (((uint32) ((uchar) (A)[1])) << 8) +
  855.     (((uint32) ((uchar) (A)[2])) << 16) +
  856.     (((uint32) ((uchar) (A)[3])) << 24)) +
  857.       (((ulonglong) ((uchar) (A)[4])) << 32))
  858. #define uint8korr(A) ((ulonglong)(((uint32) ((uchar) (A)[0])) +
  859.     (((uint32) ((uchar) (A)[1])) << 8) +
  860.     (((uint32) ((uchar) (A)[2])) << 16) +
  861.     (((uint32) ((uchar) (A)[3])) << 24)) +
  862. (((ulonglong) (((uint32) ((uchar) (A)[4])) +
  863.     (((uint32) ((uchar) (A)[5])) << 8) +
  864.     (((uint32) ((uchar) (A)[6])) << 16) +
  865.     (((uint32) ((uchar) (A)[7])) << 24))) <<
  866.       32))
  867. #define int2store(T,A) { uint def_temp= (uint) (A) ;
  868.   *((uchar*) (T))=  (uchar)(def_temp); 
  869.   *((uchar*) (T+1))=(uchar)((def_temp >> 8)); }
  870. #define int3store(T,A) { /*lint -save -e734 */
  871.   *((uchar*)(T))=(uchar) ((A));
  872.   *((uchar*) (T)+1)=(uchar) (((A) >> 8));
  873.   *((uchar*)(T)+2)=(uchar) (((A) >> 16)); 
  874.   /*lint -restore */}
  875. #define int4store(T,A) { *(T)=(char) ((A));
  876.   *((T)+1)=(char) (((A) >> 8));
  877.   *((T)+2)=(char) (((A) >> 16));
  878.   *((T)+3)=(char) (((A) >> 24)); }
  879. #define int5store(T,A) { *(T)=((A));
  880.   *((T)+1)=(((A) >> 8));
  881.   *((T)+2)=(((A) >> 16));
  882.   *((T)+3)=(((A) >> 24)); 
  883.   *((T)+4)=(((A) >> 32)); }
  884. #define int8store(T,A) { uint def_temp= (uint) (A), def_temp2= (uint) ((A) >> 32); 
  885.   int4store((T),def_temp); 
  886.   int4store((T+4),def_temp2); 
  887. }
  888. #ifdef WORDS_BIGENDIAN
  889. #define float4store(T,A)    { *(T)= ((byte *) &A)[3];
  890.                               *((T)+1)=(char) ((byte *) &A)[2];
  891.                               *((T)+2)=(char) ((byte *) &A)[1];
  892.                               *((T)+3)=(char) ((byte *) &A)[0]; }
  893. #define float4get(V,M)      { float def_temp;
  894.                               ((byte*) &def_temp)[0]=(M)[3];
  895.                               ((byte*) &def_temp)[1]=(M)[2];
  896.                               ((byte*) &def_temp)[2]=(M)[1];
  897.                               ((byte*) &def_temp)[3]=(M)[0];
  898.                               (V)=def_temp; }
  899. #define float8store(T,V)    { *(T)= ((byte *) &V)[7];
  900.                               *((T)+1)=(char) ((byte *) &V)[6];
  901.                               *((T)+2)=(char) ((byte *) &V)[5];
  902.                               *((T)+3)=(char) ((byte *) &V)[4];
  903.                               *((T)+4)=(char) ((byte *) &V)[3];
  904.                               *((T)+5)=(char) ((byte *) &V)[2];
  905.                               *((T)+6)=(char) ((byte *) &V)[1];
  906.                               *((T)+7)=(char) ((byte *) &V)[0]; }
  907. #define float8get(V,M)     { double def_temp;
  908.                               ((byte*) &def_temp)[0]=(M)[7];
  909.                               ((byte*) &def_temp)[1]=(M)[6];
  910.                               ((byte*) &def_temp)[2]=(M)[5];
  911.                               ((byte*) &def_temp)[3]=(M)[4];
  912.                               ((byte*) &def_temp)[4]=(M)[3];
  913.                               ((byte*) &def_temp)[5]=(M)[2];
  914.                               ((byte*) &def_temp)[6]=(M)[1];
  915.                               ((byte*) &def_temp)[7]=(M)[0];
  916.       (V) = def_temp; }
  917. #else
  918. #define float4get(V,M)   memcpy_fixed((byte*) &V,(byte*) (M),sizeof(float))
  919. #define float4store(V,M) memcpy_fixed((byte*) V,(byte*) (&M),sizeof(float))
  920. #if defined(__FLOAT_WORD_ORDER) && (__FLOAT_WORD_ORDER == __BIG_ENDIAN)
  921. #define doublestore(T,V)    { *(T)= ((byte *) &V)[4];
  922.                               *((T)+1)=(char) ((byte *) &V)[5];
  923.                               *((T)+2)=(char) ((byte *) &V)[6];
  924.                               *((T)+3)=(char) ((byte *) &V)[7];
  925.                               *((T)+4)=(char) ((byte *) &V)[0];
  926.                               *((T)+5)=(char) ((byte *) &V)[1];
  927.                               *((T)+6)=(char) ((byte *) &V)[2];
  928.                               *((T)+7)=(char) ((byte *) &V)[3]; }
  929. #define doubleget(V,M) { double def_temp;
  930.                               ((byte*) &def_temp)[0]=(M)[4];
  931.                               ((byte*) &def_temp)[1]=(M)[5];
  932.                               ((byte*) &def_temp)[2]=(M)[6];
  933.                               ((byte*) &def_temp)[3]=(M)[7];
  934.                               ((byte*) &def_temp)[4]=(M)[0];
  935.                               ((byte*) &def_temp)[5]=(M)[1];
  936.                               ((byte*) &def_temp)[6]=(M)[2];
  937.                               ((byte*) &def_temp)[7]=(M)[3];
  938.       (V) = def_temp; }
  939. #endif /* __FLOAT_WORD_ORDER */
  940. #define float8get(V,M)   doubleget((V),(M))
  941. #define float8store(V,M) doublestore((V),(M))
  942. #endif /* WORDS_BIGENDIAN */
  943. #endif /* sint2korr */
  944. /*
  945.   Define-funktions for reading and storing in machine format from/to
  946.   short/long to/from some place in memory V should be a (not
  947.   register) variable, M is a pointer to byte
  948. */
  949. #ifdef WORDS_BIGENDIAN
  950. #define ushortget(V,M) { V = (uint16) (((uint16) ((uchar) (M)[1]))+
  951. ((uint16) ((uint16) (M)[0]) << 8)); }
  952. #define shortget(V,M) { V = (short) (((short) ((uchar) (M)[1]))+
  953.        ((short) ((short) (M)[0]) << 8)); }
  954. #define longget(V,M) { int32 def_temp;
  955.   ((byte*) &def_temp)[0]=(M)[0];
  956.   ((byte*) &def_temp)[1]=(M)[1];
  957.   ((byte*) &def_temp)[2]=(M)[2];
  958.   ((byte*) &def_temp)[3]=(M)[3];
  959.     (V)=def_temp; }
  960. #define ulongget(V,M) { uint32 def_temp;
  961.   ((byte*) &def_temp)[0]=(M)[0];
  962.   ((byte*) &def_temp)[1]=(M)[1];
  963.   ((byte*) &def_temp)[2]=(M)[2];
  964.   ((byte*) &def_temp)[3]=(M)[3];
  965.     (V)=def_temp; }
  966. #define shortstore(T,A) { uint def_temp=(uint) (A) ;
  967.   *(T+1)=(char)(def_temp); 
  968.   *(T+0)=(char)(def_temp >> 8); }
  969. #define longstore(T,A) { *((T)+3)=((A));
  970.   *((T)+2)=(((A) >> 8));
  971.   *((T)+1)=(((A) >> 16));
  972.   *((T)+0)=(((A) >> 24)); }
  973. #define doubleget(V,M)  memcpy((byte*) &V,(byte*) (M),sizeof(double))
  974. #define doublestore(T,V) memcpy((byte*) (T),(byte*) &V,sizeof(double))
  975. #define longlongget(V,M) memcpy((byte*) &V,(byte*) (M),sizeof(ulonglong))
  976. #define longlongstore(T,V) memcpy((byte*) (T),(byte*) &V,sizeof(ulonglong))
  977. #else
  978. #define ushortget(V,M) { V = uint2korr(M); }
  979. #define shortget(V,M) { V = sint2korr(M); }
  980. #define longget(V,M) { V = sint4korr(M); }
  981. #define ulongget(V,M)   { V = uint4korr(M); }
  982. #define shortstore(T,V) int2store(T,V)
  983. #define longstore(T,V) int4store(T,V)
  984. #ifndef doubleget
  985. #define doubleget(V,M)  memcpy_fixed((byte*) &V,(byte*) (M),sizeof(double))
  986. #define doublestore(T,V) memcpy_fixed((byte*) (T),(byte*) &V,sizeof(double))
  987. #endif /* doubleget */
  988. #define longlongget(V,M) memcpy_fixed((byte*) &V,(byte*) (M),sizeof(ulonglong))
  989. #define longlongstore(T,V) memcpy_fixed((byte*) (T),(byte*) &V,sizeof(ulonglong))
  990. #endif /* WORDS_BIGENDIAN */
  991. /* sprintf does not always return the number of bytes :- */
  992. #ifdef SPRINTF_RETURNS_INT
  993. #define my_sprintf(buff,args) sprintf args
  994. #else
  995. #ifdef SPRINTF_RETURNS_PTR
  996. #define my_sprintf(buff,args) ((int)(sprintf args - buff))
  997. #else
  998. #define my_sprintf(buff,args) ((ulong) sprintf args, (ulong) strlen(buff))
  999. #endif
  1000. #endif
  1001. #ifndef THREAD
  1002. #define thread_safe_increment(V,L) (V)++
  1003. #define thread_safe_add(V,C,L)     (V)+=(C)
  1004. #define thread_safe_sub(V,C,L)     (V)-=(C)
  1005. #define statistic_increment(V,L)   (V)++
  1006. #define statistic_add(V,C,L)       (V)+=(C)
  1007. #endif
  1008. #ifdef HAVE_OPENSSL
  1009. #include <openssl/opensslv.h>
  1010. #if OPENSSL_VERSION_NUMBER < 0x0090700f
  1011. #define DES_cblock des_cblock
  1012. #define DES_key_schedule des_key_schedule
  1013. #define DES_set_key_unchecked(k,ks) des_set_key_unchecked((k),*(ks))
  1014. #define DES_ede3_cbc_encrypt(i,o,l,k1,k2,k3,iv,e) des_ede3_cbc_encrypt((i),(o),(l),*(k1),*(k2),*(k3),(iv),(e))
  1015. #endif
  1016. #endif
  1017. #endif /* my_global_h */