summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-03-24Fix fallback of uvm_map_hint() argument changes.Miod Vallat
2012-03-24Another tiny test casePhilip Guenthe
2012-03-24syncTheo de Raadt
2012-03-24Left-pad the eeprom dump with zeroes in the debug dump to make it easier toMiod Vallat
read (this code is not compiled unless option AHC_DUMP_EEPROM anyway)
2012-03-24Oops, forgot this file in the SGI_<model> -> SGI_IP## change.Miod Vallat
2012-03-24The various ConfigCache() functions actually return void, not int.Miod Vallat
2012-03-24Rename the various SGI_xxx constants from machine names to their IP numbers,Miod Vallat
for IP numbers under 30 (Octane), and add a few interesting ones. No functional change, except making my life easier for upcoming work.
2012-03-24Add a few trivial routines to get mips64r2 specific config registers. Not usedMiod Vallat
by anything yet, but has been lying in one of my trees for too long.
2012-03-24Missed a reference to the u_stats member when struct pstats was removedPhilip Guenthe
from struct user. Nothing left to zero-out here so the line goes. pointed out by deraaadt@
2012-03-24The arguments scandir() and alphasort() have changed; show that andPhilip Guenthe
give some history. ok matthew@ millert@ jmc@ naddy@
2012-03-24fix some leaksJonathan Gray
ok miod@
2012-03-24add a bunch of run devices found in the linux driverJonathan Gray
2012-03-24regenJonathan Gray
2012-03-24add a bunch of run devices found in the linux driverJonathan Gray
2012-03-24Allow relayd to use a separate SSL certificate for each portStuart Henderson
(/etc/ssl/host:port.crt, /etc/ssl/private/host:port.key). ok benno@, todd@ likes it too, doc tweak suggested by jmc.
2012-03-24set the vendor string to OpenBSD-5.2; ok mikeb@Markus Friedl
2012-03-24Add sys/file.h.Nicholas Marriott
2012-03-24add ZTE HSUSB.Federico G. Schwindt
committed over it.
2012-03-24regen.Federico G. Schwindt
2012-03-24add ZTE HSUSB device.Federico G. Schwindt
2012-03-24use Cd in SYNOPSIS; requested by kristapsJason McIntyre
2012-03-24Provide the old prototypes for scandir() and alphasort() for code thatPhilip Guenthe
requests the pre-standardized version requested by millert@
2012-03-24fix some leaksJonathan Gray
ok mikeb@
2012-03-23Make rusage totals, itimers, and profile settings per-process insteadPhilip Guenthe
of per-rthread. Handling of per-thread tick and runtime counters inspired by how FreeBSD does it. ok kettenis@
2012-03-23rollback r1.76 since it may break some toolsGleydson Soares
noticed / requested by claudio@ discussed with henning / claudio / me
2012-03-23Add an entry to the asym list for the NetBSD iSCSI target.Claudio Jeker
OK dlg@
2012-03-23we don't mention LIBRARY: cMarc Espie
"of course" deraadt@
2012-03-23add a MIDI-controlled master volume knob to adjust the mix ofAlexandre Ratchov
all playback stream, discussed with armani@
2012-03-23Ignore SIGCHLD because we don't really care what happened to the forkedRobert Nagy
processes and we don't want to wait for them to finish either. This makes the walking dead go away. ok espie@, mikeb@
2012-03-22Remove man pages for removed non-portable functions. okay jmc@Kurt Miller
2012-03-22Remove prototypes for unimplemented non-portable functions in rthreads.Kurt Miller
okay deraadt@
2012-03-22clean the sigact in a portable way; ok matthewTheo de Raadt
2012-03-22Remove pthread_suspend* and related functions. This is part of theKurt Miller
rthreads major library bump from last night. okay kettenis@
2012-03-22+ diagnosticMarc Espie
2012-03-22tweak: consistent include guards, no change in generated code.Marc Espie
2012-03-22minor cleanup: error messages include lineno and fileno together, soMarc Espie
recognize that and create a struct Location_ for it. mostly from Jonathan Calmels, a few nits from me. okay otto@
2012-03-22Accept an argument to show-environment to show one variable, based on aNicholas Marriott
diff from Kazuhiko Sakaguchi.
2012-03-22syncTheo de Raadt
2012-03-22syncTheo de Raadt
2012-03-22bump majors on libc and rthreads for the additions to libc and transferPhilip Guenthe
of __tfork_thread from rthreads to libc
2012-03-22<sched.h> is never pulled in from the kernel and #ifdef KERNEL would bePhilip Guenthe
the wrong symbol anyway, so zap some lines ok matthew@
2012-03-22Make DIR a private type within libc, give it the same underlyingMatthew Dempsky
typedef regardless of __BSD_VISIBLE, and eliminate the dirfd() macro. ok guenther@
2012-03-22Hide behind #if 0 the sched_*() functions that we don't have yetPhilip Guenthe
Requested and tested against ports by aja@, ok matthew@
2012-03-22Update alphasort() and scandir()'s argument types to match POSIX:Philip Guenthe
use "const struct dirent **" instead of "const void *". Also, add __restrict to readdir_r(). ok matthew@
2012-03-22Update cancellation point list to reflect what's done with rthreadsPhilip Guenthe
2012-03-22Add dirfd() as a function to libc per POSIX requirement; dirfd() macroMatthew Dempsky
to be pruned later when DIR is made an opaque type. ok guenther@; prodding by brad@ for VLC and other ports
2012-03-22closefrom() should be a cancellation pointPhilip Guenthe
2012-03-22tfork_thread has been moved to libcPhilip Guenthe
2012-03-22Move __tfork_thread() from rthreads (libpthread) to libc so thatPhilip Guenthe
it can be used for not-strictly-threading purposes ok matthew@ kurt@
2012-03-22new sentence, new line;Jason McIntyre