| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
Submitted by: dfr
Notes:
svn path=/head/; revision=43393
|
| |
|
|
|
|
|
| |
Hoped for by: wollman
Notes:
svn path=/head/; revision=43282
|
| |
|
|
|
|
|
|
| |
PR: docs/9717
Submitted by: Nathan Dorfman <nathan@rtfm.net>
Notes:
svn path=/head/; revision=43271
|
| |
|
|
|
|
|
|
| |
PR: docs/9597
Submitted by: Christoph Kukulies <kuku@FreeBSD.ORG>
Notes:
svn path=/head/; revision=43267
|
| |
|
|
|
|
|
|
|
|
| |
be expected.
PR: docs/9701
Submitted by: Marc van Kempen <marc@bowtie.nl>
Notes:
svn path=/head/; revision=43265
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This changes the definitions of a few items so that structures are the
same whether or not the option itself is enabled. This allows
people to enable and disable the option without recompilng the world.
As the author says:
|I ran into a problem pulling out the VM_STACK option. I was aware of this
|when I first did the work, but then forgot about it. The VM_STACK stuff
|has some code changes in the i386 branch. There need to be corresponding
|changes in the alpha branch before it can come out completely.
what is done:
|
|1) Pull the VM_STACK option out of the header files it appears in. This
|really shouldn't affect anything that executes with or without the rest
|of the VM_STACK patches. The vm_map_entry will then always have one
|extra element (avail_ssize). It just won't be used if the VM_STACK
|option is not turned on.
|
|I've also pulled the option out of vm_map.c. This shouldn't harm anything,
|since the routines that are enabled as a result are not called unless
|the VM_STACK option is enabled elsewhere.
|
|2) Add what appears to be appropriate code the the alpha branch, still
|protected behind the VM_STACK switch. I don't have an alpha machine,
|so we would need to get some testers with alpha machines to try it out.
|
|Once there is some testing, we can consider making the change permanent
|for both i386 and alpha.
|
[..]
|
|Once the alpha code is adequately tested, we can pull VM_STACK out
|everywhere.
|
Submitted by: "Richard Seaman, Jr." <dick@tar.com>
Notes:
svn path=/head/; revision=43209
|
| |
|
|
|
|
|
|
|
|
|
|
| |
This takes the conditionals out of the code that has been tested by
various people for a while.
ps and friends (libkvm) will need a recompile as some proc structure
changes are made.
Submitted by: "Richard Seaman, Jr." <dick@tar.com>
Notes:
svn path=/head/; revision=43208
|
| |
|
|
|
|
|
| |
wrong radix for recursive subnodes.
Notes:
svn path=/head/; revision=43173
|
| |
|
|
|
|
|
|
| |
due to _gethostbynis() setting h.h_length to sizeof(u_long), which
works out to 8 on alphas. And 8!= NS_INADDRSZ.
Notes:
svn path=/head/; revision=43171
|
| |
|
|
|
|
|
|
| |
can be found.
Submitted by: Bruce
Notes:
svn path=/head/; revision=43152
|
| |
|
|
|
|
|
| |
revoke() on non-device files.
Notes:
svn path=/head/; revision=43143
|
| |
|
|
| |
Notes:
svn path=/head/; revision=43092
|
| |
|
|
|
|
|
|
|
|
| |
This man page may be overdoing the cross references by referencing
man pages that are just links to other pages that are referenced.
kvm_uread() is still completely undocumented in kvm*.3.
Notes:
svn path=/head/; revision=43090
|
| |
|
|
|
|
|
| |
Sorted MLINKS.
Notes:
svn path=/head/; revision=43089
|
| |
|
|
| |
Notes:
svn path=/head/; revision=43088
|
| |
|
|
| |
Notes:
svn path=/head/; revision=43085
|
| |
|
|
|
|
|
|
|
|
|
| |
consider a linker set definition to be sufficient reason to pull an
object module from an archive library. This caused undefined
symbols when linking with libpam.a using a.out. I solved it by
linking in the object that references the linker set in the "ld -r"
step.
Notes:
svn path=/head/; revision=43056
|
| |
|
|
| |
Notes:
svn path=/head/; revision=43051
|
| |
|
|
| |
Notes:
svn path=/head/; revision=43048
|
| |
|
|
|
|
|
| |
pstat, top, and systat.
Notes:
svn path=/head/; revision=43045
|
| |
|
|
| |
Notes:
svn path=/head/; revision=43029
|
| |
|
|
|
|
|
|
| |
pollution." Unfortunately, some of these globals are used by ftpd,
and I broke make world. Pointy hat, please.
Notes:
svn path=/head/; revision=43015
|
| |
|
|
|
|
|
|
|
| |
Fix localtime.c to deal with new magic number field.
Obtained from: ftp://elsie.nci.nih.gov/pub/tzcode1999a.tar.gz
Notes:
svn path=/head/; revision=42989
|
| |
|
|
|
|
|
|
|
| |
the Makefile handles des support by just including the single .c file.
Reviewed by: Mark Murray
Notes:
svn path=/head/; revision=42982
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Secure Hashing Algorithm - 1 (SHA-1), along with the further
refinement of what $x$salt$hash means. With this new crypt the
following are all acceptable:
$1$
$MD5$
$SHA1$
Note: $2$ is used by OpenBSD's Blowfish, which I considered adding
as $BF$, but there is no actual need for it with SHA-1. However,
somebody wishing to add OpenBSD password support could easilly add
it in now.
There is also a malloc_crypt() available in the library now, which
behaves exactly the same as crypt(), but it uses a malloced buffer
instead of a static buffer. However, this is not standard so will
likely not be used much (at all).
Also, for those interested I did a brief speed test Pentium 166/MMX,
which shows the DES crypt to do approximately 2640 crypts a CPU second,
MD5 to do about 62 crypts a CPU second and SHA1 to do about 18 crypts
a CPU second.
Reviewed by: Mark Murray
Notes:
svn path=/head/; revision=42981
|
| |
|
|
| |
Notes:
svn path=/head/; revision=42919
|
| |
|
|
| |
Notes:
svn path=/head/; revision=42917
|
| |
|
|
| |
Notes:
svn path=/head/; revision=42870
|
| |
|
|
| |
Notes:
svn path=/head/; revision=42869
|
| |
|
|
|
|
|
|
| |
argument implemented by the security patch in PR kern/7899 are violated.
PR: kern/7899
Notes:
svn path=/head/; revision=42829
|
| |
|
|
|
|
|
| |
otherwise we always get empty name.
Notes:
svn path=/head/; revision=42826
|
| |
|
|
|
|
|
|
|
|
| |
in manual page that indicated otherwise.
PR: docs/9517
Submitted by: David Malone <dwmalone@maths.tcd.ie>
Notes:
svn path=/head/; revision=42781
|
| |
|
|
| |
Notes:
svn path=/head/; revision=42780
|
| |
|
|
|
|
|
|
|
|
| |
thread trying to call pthread_exit() from a cleanup handler actually
works.
Submitted by: David Leonard <david.leonard@csee.uq.edu.au> OpenBSD
Notes:
svn path=/head/; revision=42681
|
| |
|
|
| |
Notes:
svn path=/head/; revision=42669
|
| |
|
|
|
|
|
| |
Submitted by: asami
Notes:
svn path=/head/; revision=42527
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
of getopt (as in, multiple input lines :). This is documented in the
man page and is used in the code, but unistd.h and stand.h do not
declare it. Incidentally, it prevents me fixing a bug in loader's
code... :-)
PR: misc/9373
Submitted by: "Daniel C. Sobral" <dcs@newsguy.com>
Notes:
svn path=/head/; revision=42511
|
| |
|
|
|
|
|
|
|
| |
Submitted by: Alexandre Snarskii <snar@paranoia.ru>
Approved by: John Birrell
Reminded me that I'd been sitting on this too long: snar@paranoia.ru
Notes:
svn path=/head/; revision=42500
|
| |
|
|
| |
Notes:
svn path=/head/; revision=42471
|
| |\
| |
| |
| |
| |
| |
| | |
which included commits to RCS files with non-trunk default branches.
Notes:
svn path=/head/; revision=42469
|
| | |
| |
| |
| |
| |
| |
| | |
Obtained from: ftp.cdrom.com:/pub/infozip/zlib
Notes:
svn path=/vendor/libz/dist/; revision=42468
|
| | |
| |
| |
| |
| |
| |
| |
| | |
resulting NULL FILE *.
PR: 9403
Notes:
svn path=/head/; revision=42454
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
than ".so". The old extension conflicted with well-established
naming conventions for dynamically loadable modules.
The "clean" targets continue to remove ".so" files too, to deal with
old systems.
Notes:
svn path=/head/; revision=42450
|
| | |
| |
| |
| |
| |
| |
| | |
Submitted by: dfr
Notes:
svn path=/head/; revision=42387
|
| | |
| |
| |
| |
| |
| |
| | |
Ok'd by: jdp
Notes:
svn path=/head/; revision=42376
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- document that sysctl() and sysctlbyname() return 0 on success
- if the provided buffer is too small, set errno to ENOMEM and return -1
instead of returning ENOMEM.
Notes:
svn path=/head/; revision=42353
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=42330
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=42329
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=42293
|
| | |
| |
| |
| |
| |
| |
| |
| | |
s/bytes/characters/g to be consistent with Standard C terminology.
Update date and add RCS Id.
Notes:
svn path=/head/; revision=42259
|