NetBSD/usr.bin/make
rillig 2b7542e41b make(1): remove ineffective malloc_options variable
According to jemalloc(3), the variable must be called _malloc_options,
with a leading underscore, to have an effect.

Renaming the variable indeed enables the option.  There's not much point
having this variable around though, since it neither detects a trivial
double-free nor freeing an invalid pointer in the following code
snippet:

	char *asdf = bmake_malloc(10);
	fprintf(stderr, "%c\n", *asdf);
	free(asdf + 8);
	free(asdf);
	free(asdf);
	exit(1);

Instead, it just crashes with a segmentation fault.
2020-08-30 13:53:02 +00:00
..
filemon
PSD.doc
unit-tests make(1): fix sh-dots test 2020-08-29 19:35:38 +00:00
.cvsignore
arch.c make(1): rename Lst_Datum to LstNode_Datum 2020-08-30 11:15:05 +00:00
buf.c make(1): clean up code in buf.c 2020-08-23 08:21:50 +00:00
buf.h make(1): allow make to be compiled in C90 mode 2020-08-25 17:37:09 +00:00
compat.c make(1): rename Lst_Memeber to Lst_FindDatum 2020-08-30 11:12:05 +00:00
cond.c make(1): trust that Var_Parse never returns NULL 2020-08-29 13:38:48 +00:00
config.h
dir.c make(1): rename Lst_Datum to LstNode_Datum 2020-08-30 11:15:05 +00:00
dir.h make(1): clean up headers 2020-08-22 21:42:38 +00:00
enum.c make(1): fix build errors for USER_CPPFLAGS=-DNDEBUG 2020-08-28 19:46:04 +00:00
enum.h make(1): distinguish enum flags and values in debugging mode 2020-08-25 16:27:24 +00:00
for.c make(1): remove duplicate code for allocation a substring 2020-08-29 10:32:00 +00:00
hash.c make(1): remove redundant comments from hash.c 2020-08-28 20:16:19 +00:00
hash.h make(1): merge duplicate code for bmake_strldup 2020-08-29 11:13:43 +00:00
job.c make(1): remove ineffective malloc_options variable 2020-08-30 13:53:02 +00:00
job.h make(1): remove ReturnStatus, SUCCESS and FAILURE 2020-08-29 12:20:17 +00:00
lst.c make(1): rename Lst_Datum to LstNode_Datum 2020-08-30 11:15:05 +00:00
lst.h make(1): rename Lst_Datum to LstNode_Datum 2020-08-30 11:15:05 +00:00
main.c make(1): rename Lst_Datum to LstNode_Datum 2020-08-30 11:15:05 +00:00
make_malloc.c make(1): fix build with -DUSE_EMALLOC 2020-08-29 16:47:45 +00:00
make_malloc.h make(1): fix build with -DUSE_EMALLOC 2020-08-29 16:47:45 +00:00
make.1 make(1): fix manual page about the modifiers of the :C modifier 2020-08-28 17:15:04 +00:00
make.c make(1): rename Lst_Datum to LstNode_Datum 2020-08-30 11:15:05 +00:00
make.h make(1): remove ReturnStatus, SUCCESS and FAILURE 2020-08-29 12:20:17 +00:00
Makefile make(1): remove redundant MAKEFLAGS from subdir make 2020-08-28 20:57:54 +00:00
Makefile.boot
meta.c make(1): rename Lst_Datum to LstNode_Datum 2020-08-30 11:15:05 +00:00
meta.h
metachar.c
metachar.h make(1): allow make to be compiled in C90 mode 2020-08-25 17:37:09 +00:00
nonints.h make(1): clean up comments in suff.c, small refactorings 2020-08-29 12:01:46 +00:00
parse.c make(1): rename Lst_Datum to LstNode_Datum 2020-08-30 11:15:05 +00:00
pathnames.h
str.c make(1): allow for strict type checking for Boolean 2020-08-29 07:52:55 +00:00
strlist.c make(1): allow make to be compiled in C90 mode 2020-08-25 17:37:09 +00:00
strlist.h
suff.c make(1): rename Lst_Datum to LstNode_Datum 2020-08-30 11:15:05 +00:00
targ.c make(1): rename Lst_Datum to LstNode_Datum 2020-08-30 11:15:05 +00:00
trace.c
trace.h
util.c
var.c make(1): trust that Var_Parse never returns NULL 2020-08-29 13:38:48 +00:00