File: dtoa_config.h

package info (click to toggle)
tarantool 1.5.2.20.g5f5d924-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 26,568 kB
  • ctags: 18,697
  • sloc: ansic: 109,092; sh: 21,312; cpp: 20,633; xml: 9,666; asm: 2,488; python: 2,195; java: 1,759; perl: 1,002; makefile: 679
file content (74 lines) | stat: -rw-r--r-- 1,891 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#ifndef _DTOA_CONFIG_H
#define _DTOA_CONFIG_H

#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>

/* Ensure dtoa.c does not USE_LOCALE. Lua CJSON must not use locale
 * aware conversion routines. */
#undef USE_LOCALE

/* dtoa.c should not touch errno, Lua CJSON does not use it, and it
 * may not be threadsafe */
#define NO_ERRNO

#define Long    int32_t
#define ULong   uint32_t
#define Llong   int64_t
#define ULLong  uint64_t

#ifdef IEEE_BIG_ENDIAN
#define IEEE_MC68k
#else
#define IEEE_8087
#endif

#define MALLOC(n)   xmalloc(n)

static void *xmalloc(size_t size)
{
    void *p;

    p = malloc(size);
    if (!p) {
        fprintf(stderr, "Out of memory");
        abort();
    }

    return p;
}

#ifdef MULTIPLE_THREADS

/* Enable locking to support multi-threaded applications */

#include <pthread.h>

static pthread_mutex_t private_dtoa_lock[2] = {
    PTHREAD_MUTEX_INITIALIZER,
    PTHREAD_MUTEX_INITIALIZER
};

#define ACQUIRE_DTOA_LOCK(n)    do {                                \
    int r = pthread_mutex_lock(&private_dtoa_lock[n]);              \
    if (r) {                                                        \
        fprintf(stderr, "pthread_mutex_lock failed with %d\n", r);  \
        abort();                                                    \
    }                                                               \
} while (0)

#define FREE_DTOA_LOCK(n)   do {                                    \
    int r = pthread_mutex_unlock(&private_dtoa_lock[n]);            \
    if (r) {                                                        \
        fprintf(stderr, "pthread_mutex_unlock failed with %d\n", r);\
        abort();                                                    \
    }                                                               \
} while (0)

#endif  /* MULTIPLE_THREADS */

#endif  /* _DTOA_CONFIG_H */

/* vi:ai et sw=4 ts=4:
 */