PostGIS
2.4.9dev-r@@SVN_REVISION@@
◆
rt_pg_realloc()
static void* rt_pg_realloc
(
void *
mem
,
size_t
size
)
static
Definition at line
178
of file
rtpostgis.c
.
References
POSTGIS_RT_DEBUGF
.
Referenced by
_PG_init()
.
179
{
180
void
* result;
181
182
POSTGIS_RT_DEBUGF
(5,
"rt_pg_realloc(%ld) called"
, (
long
int
) size);
183
184
if
(mem)
185
result = repalloc(mem, size);
186
187
else
188
result = palloc(size);
189
190
return
result;
191
}
POSTGIS_RT_DEBUGF
#define POSTGIS_RT_DEBUGF(level, msg,...)
Definition:
rtpostgis.h:65
Here is the caller graph for this function:
raster
rt_pg
rtpostgis.c
Generated by
1.8.13