diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2019-04-23 18:55:27 +0100 |
---|---|---|
committer | Nick Alcock <nick.alcock@oracle.com> | 2019-05-28 17:07:15 +0100 |
commit | 60da9d955964759b1f52690bff587ad32a198507 (patch) | |
tree | e3d9dd8f6667916ef29c557e62c2d0f3fba6f6c0 /libctf/ChangeLog | |
parent | 2e94b05630514109994abb77ee2dae730f17c263 (diff) | |
download | gdb-60da9d955964759b1f52690bff587ad32a198507.zip gdb-60da9d955964759b1f52690bff587ad32a198507.tar.gz gdb-60da9d955964759b1f52690bff587ad32a198507.tar.bz2 |
libctf: lowest-level memory allocation and debug-dumping wrappers
The memory-allocation wrappers are simple things to allow malloc
interposition: they are only used inconsistently at present, usually
where malloc debugging was required in the past.
These provide a default implementation that is environment-variable
triggered (initialized on the first call to the libctf creation and
file-opening functions, the first functions people will use), and
a ctf_setdebug()/ctf_getdebug() pair that allows the caller to
explicitly turn debugging off and on. If ctf_setdebug() is called,
the automatic setting from an environment variable is skipped.
libctf/
* ctf-impl.h: New file.
* ctf-subr.c: New file.
include/
* ctf-api.h (ctf_setdebug): New.
(ctf_getdebug): Likewise.
Diffstat (limited to 'libctf/ChangeLog')
-rw-r--r-- | libctf/ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libctf/ChangeLog b/libctf/ChangeLog new file mode 100644 index 0000000..6a37212 --- /dev/null +++ b/libctf/ChangeLog @@ -0,0 +1,12 @@ +2019-05-28 Nick Alcock <nick.alcock@oracle.com> + + * ctf-impl.h: New file. + * ctf-subr.c: New file. + + +Local Variables: +mode: change-log +left-margin: 8 +fill-column: 76 +version-control: never +End: |