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
|
.\" gd_alloc_funcs.3. The gd_alloc_funcs man page.
.\"
.\" Copyright (C) 2016, 2017 D. V. Wiebe
.\"
.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
.\"
.\" This file is part of the GetData project.
.\"
.\" Permission is granted to copy, distribute and/or modify this document
.\" under the terms of the GNU Free Documentation License, Version 1.2 or
.\" any later version published by the Free Software Foundation; with no
.\" Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
.\" Texts. A copy of the license is included in the `COPYING.DOC' file
.\" as part of this distribution.
.\"
.TH gd_alloc_funcs 3 "5 April 2017" "Version 0.10.1" "GETDATA"
.SH NAME
gd_alloc_funcs \(em specify an alternate memory manager for GetData's use
.SH SYNOPSIS
.SC
.B #include <getdata.h>
.HP
.BI "void gd_alloc_funcs(void *(*" malloc_func ")(size_t),
.BI "void (*" free_func )(void*));
.EC
.SH DESCRIPTION
The
.FN gd_alloc_funcs
function allows the caller to specify an alternate memory manager for GetData to
use when providing dynamically allocated data to the caller. The caller should
specify pointers to two functions which mimic the behaviour of the Standard
Library's
.F3 malloc
and
.F3 free
functions. Passing NULL is equivalent to passing a pointer to the
corresponding Standard Library function, so the default memory manager can be
restored by passing all NULLs to this function.
The functions
.F3 gd_entry ,
.F3 gd_error_string ,
.F3 gd_fragment_affixes ,
.F3 gd_linterp_tablename ,
.F3 gd_raw_filename ,
and
.F3 gd_strtok
will use
.ARG malloc_func
to allocate the buffers they return. The function
.F3 gd_free_entry_strings
will use the specified
.ARG free_func
to deallocate entry strings, and that same function will also be used by
GetData to deallocate strings returned by any registered parser callback
function (see
.F3 gd_cbopen ).
Internally, GetData may still allocate buffers on a different heap, and the
caller should not assume that any other pointer returned by the library were
allocated with the functions specified by this function. Neither should the
caller assume that these functions won't be used by GetData library functions
to allocate and deallocate temporary buffers.
Changes made to the memory manager are global across GetData. The caller should
only call this function when it is certain that no object allocated with the
old memory manager still exists.
This function always succeeds and returns no value.
.SH HISTORY
The
.FN gd_alloc_funcs
function appeared in GetData-0.10.0.
.SH SEE ALSO
.F3 free ,
.F3 gd_cbopen ,
.F3 gd_entry ,
.F3 gd_error_string ,
.F3 gd_fragment_affixes ,
.F3 gd_free_entry_strings
.F3 gd_linterp_tablename ,
.F3 gd_raw_filename ,
.F3 gd_strtok ,
.F3 malloc
|