summaryrefslogtreecommitdiffstats
path: root/lib/libsqlite3/src/mutex_unix.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-03-12Escape ! characters for tab-completion, required for "set -o csh-history" users.sthen1-2/+2
Tweak to maintain ascii ordering suggested by Simon Nicolussi. OK halex@
2015-03-12Only read time information from the received packet if it is bigflorian1-7/+8
enough. OK deraadt@
2015-03-12If an archive isn't a recognized type, then check whether it looksguenther2-4/+74
like compress, gzip, bzip2, or xz output. If so then error out with a useful message directing the user to the correct option and error out instead of scanning forward for an embedded tar/cpio header. wording help from sobrado@ ok millert@ deraadt@
2015-03-12Delete cribbage logging. Was never enabled and no point in enabling it.bentley4-34/+5
ok tedu@
2015-03-12Fix typo: nemb -> nmemblteo1-3/+3
From Ryan May.
2015-03-12Switch the netstat view of systat to use the same kvm_getfiles()claudio5-157/+183
function similar to netstat(1). The output still shows the same info but may be a bit differently sorted. Also it will now show connections that are not UDP or TCP. This was the last bit of systat that needed kvm access and so now systat no longer needs to be setgid kmem. With this commit OpenBSD is officially setgid kmem free and an almost 10 year journey finally comes to an end. OK deraadt@
2015-03-12replace bcopy with memcpydlg1-4/+4
2015-03-12bump the size of the time types on the wire to 64bit, and use nsecdlg1-26/+22
instead of usec so its easier to translate to/from timespecs instead of timevals. ok deraadt@ florian@
2015-03-11do not enter tcopy; spotted by teduderaadt1-2/+2
2015-03-11do not handcraft protos that already come from unistd.hderaadt1-7/+1
2015-03-11Convert to if_input().mpi1-23/+7
Tested and ok benno@
2015-03-11Convert to if_input(), tested by jasper@.mpi1-13/+5
2015-03-11Wrap long line. This is another airplane commit from an 747-8reyk1-4/+4
somewhere over Siberia and I think I'm just getting into minor turbulences.
2015-03-11syncderaadt2-2/+0
2015-03-11tcopy goes to the atticderaadt3-409/+0
ok miod
2015-03-11Shuffle some code around to make it easier to read. Add get_rootinfo()krw3-138/+143
and shuffle some install specific code into install.sh. No intentional functional change. Update copyrights to 2015 while here. Tested & ok rpe@
2015-03-11document HW_PERFPOLICY; ok tedujmc1-2/+9
2015-03-11-s is not optional, sadly;jmc2-14/+21
while here i've reformatted the page to stop kidding that -s is 4 options; original issue kind of spotted by adam thompson, though note i am not fixing the issue he complained about (i'll address that mail in a minute);
2015-03-11delay EVP_MD_CTX_init so we don't forget to clean it up.tedu2-6/+8
spotted by miod. ok miod.
2015-03-11syncderaadt3-3/+3
2015-03-11openprom, just like eeprom; ok miodderaadt3-6/+6
2015-03-11syncderaadt1-3/+3
2015-03-11eeprom(8) is only run by root now, so no need for kmem groupderaadt1-2/+2
ok miod
2015-03-11drop setgid kmem. If you want to play with eeprom, you generallyderaadt2-11/+2
need to be root ok miod
2015-03-11Convert to if_input(), tested by jasper@, thanks!mpi1-13/+5
2015-03-11Convert to if_input().mpi1-13/+7
Tested and ok armani@
2015-03-11adjust for removal of expr (and while here, sort all these lists, with thederaadt21-83/+116
goal of eventually refactoring them)
2015-03-11expr no longer needed on media, because the scripts always use ksh builtins.deraadt2-9/+2
halex, rpe, and todd cleared the way for this.
2015-03-11If this is going to use sync, it should use the sync + sleep idiom.deraadt1-2/+2
Yes, this is stupid, but MI installboot later will make the problem go away. Until then..
2015-03-11Remove setgid kmem support. As a result, -d and -v will require you toderaadt2-17/+6
run this as root. ok millert, also discussed with guenther
2015-03-11'rc.firstime' -> 'rc.firsttime' in comment.krw1-2/+2
Diff from Navan Carson via tech@
2015-03-11When interpreting the -O argument as a macro name fails,schwarze1-3/+4
fall back to showing Nd rather than not showing anything. Issue reported by jmc@.
2015-03-11Fix previous: size_t is often narrower than off_t.schwarze1-2/+2
Cluestick applied by joerg at NetBSD.
2015-03-11Match on 3160. Untested but should work.jsg1-1/+3
ok stsp@ kettenis@
2015-03-11Point people to local-zone and stub-zone in unbound.conf and explainflorian1-4/+14
when this can be used. tweaks ian@ OK ratchov@, sthen@ seems more useful to millert@
2015-03-11set-titles-string now uses formats, not the status bits (so no #() fornicm1-5/+5
now). Reported by landry.
2015-03-11tweak wording; "a value different to 1" -> "...other than 1", from Sevan Janiyansthen1-3/+3
2015-03-11Remove unused type definitions.mpi1-7/+1
ok miod@
2015-03-11port the idea of using clock_gettime(CLOCK_MONOTONIC) for measuringdlg1-6/+18
intervals from src/sbin/ping/ping.c r1.115. > use clock_gettime(CLOCK_MONOTONIC) to get timestamps to measure the > interval between sending a ping and getting a reply for it. > > this makes it resistant against local wall clock changes, which can > skew the intervals reported or make them go negative. this version puts clock_getting in a local gettime() function that converts to a struct timeval that all the previous callers of gettimeofday expect to get. requested by deraadt@ florian@
2015-03-11port src/sbin/ping/ping.c r1.115.dlg1-3/+9
> use clock_gettime(CLOCK_MONOTONIC) to get timestamps to measure the > interval between sending a ping and getting a reply for it. > > this makes it resistant against local wall clock changes, which can > skew the intervals reported or make them go negative. requested by deraadt@ florian@
2015-03-11use clock_gettime(CLOCK_MONOTONIC) to get timestamps to measure thedlg1-3/+9
interval between sending a ping and getting a reply for it. this makes it resistant against local wall clock changes, which can skew the intervals reported or make them go negative. ok deraadt@ florian@ makes sense to lots of others
2015-03-11add back the changes from rev 1.206, djm reverted this by mistake injsg1-2/+5
rev 1.207
2015-03-10Set verbosity to 1 (the default is 0) so we log incoming notifiesmillert1-1/+2
and zone xfers. OK florian@ deraadt@
2015-03-10Remove unused static local variable; mickey@miod1-3/+1
2015-03-10Invoke va_end() before returning, rather than in an unreachable place; mickey@miod1-3/+4
2015-03-10Make the amd64 pmap (more) mpsafe by protecting both the pmap itself and thekettenis2-31/+52
pv lists with a mutex. Rearange some code to avoid sleeping/spinning with one of these locks held, and also take care that we don't allocate/free any memory in that case. This should make pmap_enter(9), pmap_remove(9) and pmap_page_protect(9) safe to use without holding the kernel lock. Other architectures will follow. ok mlarkin@, deraadt@
2015-03-10Disable db file. It is believed to be a saner default for the commonflorian1-1/+2
use case. sthen@ noticed a problem with missing records on shutdown. OK sthen@
2015-03-10Convert to if_input().mpi1-15/+5
Tested and ok sthen@, ok dlg@
2015-03-10The st_size member of struct stat is off_t, which is signed,schwarze1-2/+2
all required by POSIX. So don't compare it against against an unsigned constant.
2015-03-10We can keep track of the pager PID without additional complexity.schwarze1-27/+23
No functional change for now, but more robust in case anybody should ever add additional child processes.