| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
| |
structure of tracking pages returned by mmap(). Lots of testing by
lots of people, thanks to you all.
ok djm@ (for a slighly earlier version) deraadt@
|
|
|
|
|
|
|
|
|
| |
Not sure what's more surprising: how long it took for NetBSD to
catch up to the rest of the BSDs (including UCB), or the amount of
code that NetBSD has claimed for itself without attributing to the
actual authors.
OK deraadt@
|
| |
|
| |
|
|
|
|
|
|
|
| |
call to strtod() with bounding check.
Discussed with pyr@ and otto@
ok otto@ deraadt@
|
| |
|
|
|
|
| |
costs; ok jmc@ for the man page bits; ok millert@ deraadt@
|
|
|
|
|
|
|
| |
Use arc4random_uniform() when the desired random number upper bound
is not a power of two
ok deraadt@ millert@
|
|
|
|
|
|
| |
calls vfork(2). "untested, but looks OK" marc@
- document vfork(2), popen(3) and system(3) don't call atfork handlers
in multithreaded programs. okay jmc@
|
|
|
|
|
| |
prevents a few "cannot free mem because i need mem to free mem"
scenarios (one found by weingart@). ok weingart@ millert@ miod@
|
|
|
|
| |
OK millert@
|
|
|
|
|
|
| |
Therefore added math.h to SYNPOSIS.
OK millert@
|
|
|
|
|
|
| |
"suggest parentheses around && within ||"
ok millert@
|
|
|
|
| |
ok millert@ ray@
|
| |
|
|
|
|
| |
Based on a diff from Mike Belopuhov. OK jmc@
|
|
|
|
| |
object destructors called at dlclose() time. Inspired by similar changes in FreeBSD and NetBSD.
|
| |
|
| |
|
| |
|
|
|
|
| |
OK otto@
|
|
|
|
|
|
|
|
| |
Document that getopt_long(3) can and will accept unique abbreviated long
option names. This feature has been present since getopt_long(3) was first
released in NetBSD 1.5. This is also standard GNU getopt_long(3) behavior.
ok millert
|
|
|
|
| |
from FreeBSD. With help from jmc@.
|
| |
|
|
|
|
| |
some time ago--it caused too many problems.
|
|
|
|
| |
done by arc4random(); ok millert@ deraadt@
|
| |
|
|
|
|
| |
ok jmc@
|
| |
|
|
|
|
| |
in low-mem conditions; ok dim@
|
|
|
|
|
|
| |
<molivier at users dot sourceforge dot net>
ok jmc@ mickey@
|
|
|
|
| |
includes used a bit later (for instance on the vax)
|
|
|
|
|
| |
codebase. tested mostly by ckuethe and myself. __dtoa() use now requires
a call to __freedtoa()
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
create special allocators for pginfo and pgfree structs instead of imalloc.
this keeps them separated from application memory.
for chunks, to prevent deterministic reuse, keep a small array
and swizzle the to be freed chunk with a random previously freed chunk.
this last bit only for chunks because keeping arbitrarily large regions
of pages around may cause out of memory issues (and pages are, to some
extent, returned in random order).
all changes enabled by default.
thanks to ben for pointing out these issues.
ok tech@
|
| |
|
| |
|
| |
|
|
|
|
| |
own brains out, and then takes lint down with it. To be investigated...
|
| |
|
|
|
|
|
|
| |
Log Message:
Switch from 4-clause to 2-clause BSD license.
Ok dillo@, board@.
|
|
|
|
|
|
| |
detctecion of underflow where it would otherwise not happen for FPUs
that have a larger register size than sizeof double (i386, m68k). ok
deraadt@ weingart@ kettenis@
|
|
|
|
|
|
|
|
|
| |
flag from its optional argument if permutation is disabled. The
idea was that since "r:" would match "-r foo" then "r::" should
match "-r foo" too as long as we know that things have not been
reshuffled. Unfortunately, this causes incompatibilities with GNU
getopt_long when the POSIXLY_CORRECT environment variable is set.
OK deraadt@
|
|
|
|
| |
descriptive while at it, input and okay jmc@
|
|
|
|
| |
ok miod@, tedu@, pedro@
|
|
|
|
|
|
| |
requires memory; try to make sure we have it. If all fails, leak
instead of crash. Test case originally found by cloder@, fix tested
by many.
|
|
|
|
| |
spotted by ray some time ago
|
|
|
|
|
|
|
| |
region succeeds, but allocation a required page dir failed. This
can happen if we're really close to ulimit after allocation the
region of the size requested. See malloc_ulimit1 regress test.
Tested by many; thanks.
|
|
|
|
| |
tested by quite a few developers. ok deraadt@
|
|
|
|
|
|
| |
root node doesn't have a parent, and POSIX does not say what should be
done in that case. Warn developers that different implementations
may do different things.
|