Skip to content

Commit cbfb3f7

Browse files
author
Gray Watson
committed
tweaks to manifest and removed malloc_funcs.h
1 parent 7d0d67a commit cbfb3f7

File tree

4 files changed

+33
-330
lines changed

4 files changed

+33
-330
lines changed

Makefile.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -444,12 +444,12 @@ protect.o: protect.c conf.h settings.h dmalloc.h dmalloc_loc.h error.h \
444444
heap.h protect.h
445445
user_malloc.o: user_malloc.c conf.h settings.h dmalloc.h append.h chunk.h \
446446
compat.h debug_tok.h dmalloc_loc.h env.h error.h error_val.h heap.h \
447-
malloc_funcs.h return.h
447+
user_malloc.h return.h
448448
chunk_th.o: chunk.c conf.h settings.h dmalloc.h append.h chunk.h chunk_loc.h \
449449
dmalloc_loc.h compat.h debug_tok.h dmalloc_rand.h dmalloc_tab.h \
450450
error.h error_val.h heap.h
451451
error_th.o: error.c conf.h settings.h dmalloc.h append.h chunk.h compat.h \
452452
debug_tok.h dmalloc_loc.h env.h error.h error_val.h version.h
453453
user_malloc_th.o: user_malloc.c conf.h settings.h dmalloc.h append.h chunk.h \
454454
compat.h debug_tok.h dmalloc_loc.h env.h error.h error_val.h heap.h \
455-
malloc_funcs.h return.h
455+
user_malloc.h return.h

Manifest Manifest.txt

+30-24
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
11
-------------------------------------------------------------------------------
22
Description of the files in the debug-malloc package.
33

4-
Changelog Log entries detailing major module changes.
4+
Changelog.txt Log entries detailing major module changes.
55

6-
INSTALL Installation guide.
6+
INSTALL.txt Installation guide.
77

8-
Makefile.in Used by configure to create the Makefile.
9-
10-
Manifest This file.
11-
12-
NEWS File with a condensed view of the module's
13-
ChangeLog entries per version.
8+
LICENSE.txt ISC License for the library.
149

15-
NOTES General Notes of the debug-malloc routines and
16-
associated algorithms.
10+
Makefile.in Used by configure to create the Makefile.
1711

18-
README Quick startup notes.
12+
README.md Quick startup notes.
1913

2014
TODO Things to do list. It gets longer and longer.
2115

16+
append.[ch] Local implementations of snprintf and other string functions.
17+
2218
arg_check.[ch] Malloc routines used for testing of arguments.
2319

2420
chunk.[ch] Lower level allocation routines. This is the
@@ -40,9 +36,7 @@ config.help Help file about the GNU configure scripts.
4036

4137
configure Configure shell script.
4238

43-
configure.in Used by autoconf to create configure script.
44-
45-
contrib/ directory of contributions from other sources
39+
configure.ac Used by autoconf to create configure script.
4640

4741
debug_tok.h Tokens that correspond to debugging
4842
functionality.
@@ -57,12 +51,14 @@ dmalloc.h Installed dmalloc .h file to be included in
5751
those .c files where file and line debugging
5852
information is required.
5953

60-
dmalloc.h.[123] Used to create dmalloc.h.
54+
dmalloc.h.[12345] Used to create dmalloc.h.
55+
56+
dmalloc.html HTML version of the documentation.
6157

6258
dmalloc.info User-level gnu info manual file for the dmalloc
6359
routines. Suitable as a text manual also.
6460

65-
dmalloc.ps Postscript file for TeX-less folks.
61+
dmalloc.spec Spec file hopefully helpful to build linux packages.
6662

6763
dmalloc.texi Texinfo user manual for generating Info or dvi
6864
formats.
@@ -71,14 +67,19 @@ dmalloc_argv.[ch] Argument processing library files.
7167

7268
dmalloc_argv_loc.h Local defines for the argv files.
7369

70+
dmalloc_fc_t.c Test program for the function checking code.
71+
7472
dmalloc_loc.h Local defines for all of the dmalloc routines.
7573

76-
dmalloc_lp.[ch] Leap-frog routines to provide file/line info
77-
to lib.
74+
dmalloc_rand.[ch] Random number implementation.
7875

7976
dmalloc_t.c Meager test program for testing the dmalloc
8077
routines.
8178

79+
dmalloc_tab.[ch] Generic memory table code.
80+
81+
dmalloc_tab_loc.h Local defines for the memory table code.
82+
8283
dmallocrc Sample RC file that is used to set the debug
8384
flags.
8485

@@ -95,18 +96,23 @@ heap.[ch] Possibly machine specific routines for
9596

9697
install-sh Shell script for systems without a sane install.
9798

98-
malloc.c Higher level alloc routines including malloc,
99-
free, realloc, etc. These are the routines to
100-
be called from user space.
101-
10299
mkinstalldirs Script that makes the directories to install into.
103100

101+
protect.[ch] Memory protection functions.
102+
103+
release.sh Release script used by maintainers.
104+
104105
return.h Defines to get the return-address for non-malloc calls.
105106

107+
settings.dist File used by configure to generate settings.h.
108+
106109
settings.h File included by conf.h which contains manual defines.
107110

108-
texinfo.tex File included to allow TeX output from the
109-
malloc.texi file.
111+
settings.test File generated by configure.
112+
113+
user_malloc.[ch] Higher level alloc routines including malloc,
114+
free, realloc, etc. These are the routines to
115+
be called from user space.
110116

111117
version.h Version number for the library.
112118

0 commit comments

Comments
 (0)