少年修仙传客户端基础资源
hch
2024-04-01 d01413b00ef631ac20347716b23818b0b811f65f
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*
 * gmem.c: memory utility functions
 *
 * Author:
 *     Gonzalo Paniagua Javier (gonzalo@novell.com)
 *
 * (C) 2006 Novell, Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
#include <config.h>
#include <stdio.h>
#include <string.h>
#include <glib.h>
 
#if defined (ENABLE_OVERRIDABLE_ALLOCATORS)
 
static GMemVTable sGMemVTable = { malloc, realloc, free, calloc };
 
void
g_mem_set_vtable (GMemVTable* vtable)
{
    sGMemVTable.calloc = vtable->calloc ? vtable->calloc : calloc;
    sGMemVTable.realloc = vtable->realloc ? vtable->realloc : realloc;
    sGMemVTable.malloc = vtable->malloc ? vtable->malloc : malloc;
    sGMemVTable.free = vtable->free ? vtable->free : free;
}
 
#define G_FREE_INTERNAL sGMemVTable.free
#define G_REALLOC_INTERNAL sGMemVTable.realloc
#define G_CALLOC_INTERNAL sGMemVTable.calloc
#define G_MALLOC_INTERNAL sGMemVTable.malloc
#else
 
void
g_mem_set_vtable (GMemVTable* vtable)
{
}
 
#define G_FREE_INTERNAL free
#define G_REALLOC_INTERNAL realloc
#define G_CALLOC_INTERNAL calloc
#define G_MALLOC_INTERNAL malloc
#endif
void
g_free (void *ptr)
{
    if (ptr != NULL)
        G_FREE_INTERNAL (ptr);
}
 
gpointer
g_memdup (gconstpointer mem, guint byte_size)
{
    gpointer ptr;
 
    if (mem == NULL)
        return NULL;
 
    ptr = g_malloc (byte_size);
    if (ptr != NULL)
        memcpy (ptr, mem, byte_size);
 
    return ptr;
}
 
gpointer g_realloc (gpointer obj, gsize size)
{
    gpointer ptr;
    if (!size) {
        g_free (obj);
        return 0;
    }
    ptr = G_REALLOC_INTERNAL (obj, size);
    if (ptr)
        return ptr;
    g_error ("Could not allocate %i bytes", size);
}
 
gpointer 
g_malloc (gsize x) 
    gpointer ptr;
    if (!x)
        return 0;
    ptr = G_MALLOC_INTERNAL (x);
    if (ptr) 
        return ptr;
    g_error ("Could not allocate %i bytes", x);
}
 
gpointer g_calloc (gsize n, gsize x)
{
    gpointer ptr;
    if (!x || !n)
        return 0;
        ptr = G_CALLOC_INTERNAL (n, x);
    if (ptr)
        return ptr;
    g_error ("Could not allocate %i (%i * %i) bytes", x*n, n, x);
}
gpointer g_malloc0 (gsize x) 
    return g_calloc (1,x);
}
 
gpointer g_try_malloc (gsize x) 
{
    if (x)
        return G_MALLOC_INTERNAL (x);
    return 0;
}
 
 
gpointer g_try_realloc (gpointer obj, gsize size)
    if (!size) {
        G_FREE_INTERNAL (obj);
        return 0;
    } 
    return G_REALLOC_INTERNAL (obj, size);
}