summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-02-03oops.Artur Grabowski
2001-02-03Schedule running of __fini in __init, not __start.Artur Grabowski
2001-02-03An OpenBSD tag doesn't hurt.Artur Grabowski
2001-02-03Add an OS note identifying OpenBSD binaries.Artur Grabowski
This appears to be the standard way to do it.
2001-02-03Decruftification.Artur Grabowski
2001-02-03Create a common_elf directory with crtbegin and crtend that canArtur Grabowski
be shared between archs.
2014-11-14prefer sizeof(*ptr) to sizeof(struct) for malloc and freeTed Unangst
2014-11-14_NSIG is the number of valid signals including signal 0, so it's not a validJonathan Matthew
signal number itself. Attempting to reset the signal action for it causes posix_spawn to fail, making the POSIX_SPAWN_SETSIGDEF flag unusable. ok guenther@
2014-11-14simplest free(size)Ted Unangst
2014-11-14bzero -> memsetTed Unangst
2014-11-14from natano:Ted Unangst
_PATH_BSHELL, _PATH_SENDMAIL, _PATH_TMP and _PATH_TTY are defined in <paths.h> and _PATH_SYSV_TTY is unused. All of them can be removed from pathnames.h. The other defines can be made unconditionally.
2014-11-14from natano:Ted Unangst
The 'tcl' command in vi does nothing, except to print the message "Vi was not loaded with a Tcl interpreter". Printing the standard message for unknown commands would be equally descriptive with the benefit of reducing code size.
2014-11-14from natano:Ted Unangst
The vi editor contains code for two different file locking methods - one using flock(), the other using fcntl(). The fcntl method is unused and has severe limitations (as described in a code comment). Let's remove it for sake of readibility.
2014-11-14Shorten the AgentX header debug messages (only compiled with -DDEBUG)Reyk Floeter
to a single line and print to stderr instead of stdout. This makes it easier to follow the debug output again. Also, as a rule of thumb, it is OK to exceed 80 chars for these kinds of developer debug messages. OK blambert@
2014-11-14sort names for -C. ok reykTed Unangst
2014-11-14enable trunk.Henning Brauer
made possible by the install/upgrade changes by krw and the ifconfig adjustments by me. ok krw reyk
2014-11-14move the trunk related functions out of ifdef SMALL, to allow trunk onHenning Brauer
RAMDISKs. grows ifconfig on SMALL media slightly, verified to still fit on amd64 i386 sparc64 alpha hppa macppc by me. ok krw reyk
2014-11-14regenMartin Pieuchot
2014-11-14Some BayTrail IDs, including xhci(4), found in inframare's dmesg on bugs@.Martin Pieuchot
2014-11-14implement the atomic_foo things on arm.David Gwynne
testing and ok jsg@
2014-11-14let this compile with clang; no binary change with gcc.Daniel Dickman
ok deraadt@
2014-11-14Now that all known users of cpp in base and X use tradcpp, move gccDaniel Dickman
internals from the base set to the comp set consistently for all platforms. ok deraadt@
2014-11-14mention recently added sdtemp devicesJonathan Gray
2014-11-14add some more sdtemp devicesJonathan Gray
2014-11-14Describe how to load the installer over the network via TFTP.Jonathan Gray
At least on the bbb there is no need to specify the load address, I'd be interested to hear if this isn't the case for other boards.
2014-11-14syncTheo de Raadt
2014-11-14Remove needless and harmful byte swapping on big endian architectures.Ingo Schwarze
Problem found and patch provided by Martin Natano at bitrig, thanks! Tested on macppc by natano@ and on i386, amd64, and sparc64 myself.
2014-11-14Add gcc printf format attributes to iked's parse.y and remove unusedDoug Hogan
yywarn() definition. ok bluhm@
2014-11-14Add gcc printf format attributes to yyerror() in parse.y files.Doug Hogan
No yyerror() calls needed to be changed. ok bluhm@
2014-11-14Label windows which are smaller than expected with a reason.Nicholas Marriott
2014-11-14move the slowdown back up. it needs to take place after the allocated pageTed Unangst
has been added to the pool, else it doesn't help because the memory isn't available. lost in locking rework. tested blambert sthen
2014-11-14Add sched_yield(2) manpagePhilip Guenther
2014-11-14syncTheo de Raadt
2014-11-13Nuke GOOD define and just exit(0) on success. While there removeFlorian Obser
unused MALLOCROUND define. No binary change. From Martin Natano (natano AT natano DOT net). OK lum@
2014-11-13Add many missing error checks (probably not exhaustive, but a good start):Miod Vallat
- make VKO_compute_key() no longer void so that it can return failure. - fix unchecked allocations in too many routines to mention /-: - fix unchecked BN operations in gost2001_do_sign(), gost2001_do_verify(), VKO_compute_key(). - fix the gost2001_do_sign() interface violation by having its sole caller free the BIGNUM it passes to that function by itself, instead of having the callee do this. Reviewed (except for the last item) by Dmitry Eremin-Solenikov.
2014-11-13Sacrifice this code to the KNF deities.Miod Vallat
2014-11-13keep queues around when anchors are being loadedMartin Pelikan
ok mikeb
2014-11-13remove networks(5) support; it wasn't even documented to exist;Ingo Schwarze
"just go ahead" deraadt@
2014-11-13Fix a condition which selects log level for errors on routing socket,YASUOKA Masahiko
since it was logically reverse.
2014-11-13When the pool address is changed and there is a PPP session which usesYASUOKA Masahiko
the pool to be deleted, then the PPP session is to be deleted. But the internal radish tree had kept the deleted session. This causes "use-after-free", and it had made npppd crash.
2014-11-13sizes for simple frees. new diff without the bug spotted by deraadtTed Unangst
2014-11-13bzero -> memsetTed Unangst
2014-11-13Tweak some comments and error messages. Put all "I can't handleKenneth R Westerback
this" tests at the top of the dispatch loop. Use a 'continue' instead of 'goto <label just after the while>'. No intended functional change.
2014-11-12Restore change in r1.17 but add checks to prevent the line lengthNicholas Marriott
overflowing, from Balazs Kezes.
2014-11-12Add -b to splitw like joinw, from Felix Rosencrantz.Nicholas Marriott
2014-11-12take a few more ticks to actually throttle down. hopefully helps inTed Unangst
situations where e.g. web browsing is cpu intense but intermittently idle. subject to further refinement and tuning.
2014-11-12Fix GOST TC26-B curve description.Miod Vallat
2014-11-12Improve performance of an internal loop by saving up on branchingMike Belopuhov
Pointed out by John-Mark Gurney <jmg at funkthat ! com>, thanks!
2014-11-12tweak previous;Jason McIntyre
2014-11-12Remove more portability bits for older systems; from Martin NatanoTodd C. Miller