summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-04-15If the dma-usable area changes after autoconf, recompute the buffer count andMiod Vallat
invoke bufadjust() accordingly. Similar to what sysctl kern.bufcachepercent does.
2012-04-15Tell Indy and Challenge S apart.Miod Vallat
2012-04-15Add option EISAVERBOSE to IP22 kernelsMiod Vallat
2012-04-15Move the check for a <0 number of process display_lines to a better place.lum
This makes: This terminal can only display -N processes. a thing of the past.
2012-04-15tweak previous;Jason McIntyre
2012-04-15Call this mandoc 1.12.1.Ingo Schwarze
I refrained from merging one patch that i dislike and one that requires additional review, but we are now definitely much closer to 1.12.1 than to 1.12.0.
2012-04-15Clean up code a bit by pushing warnings into a WARNING macro; from kristaps@.Ingo Schwarze
This also backs out the realpath(3) changes for now; according to Kristaps, they caused regressions.
2012-04-15when using aliases, the *real* delivery user is not set on expand nodesGilles Chehade
which prevents filters / filenames from working from /etc/mail/aliases. in aliases_get() during the rb tree iteration, copy the username to the expand node. diff from Christopher Zimmermann, thankkkks and sorry for the delay
2012-04-15* Use NULL instead of 0 for pointersCharles Longeau
* Replace loop with memcpy() in function get_literal() * Style tweak: "for(" -> "for (" From Michael W. Bombardieri ok nicm@ millert@
2012-04-15Remove dead assignments and newly created unused variables.Charles Longeau
Found by LLVM/Clang Static Analyzer. ok gilles@
2012-04-15Simplify by not pre-filtering the result vector for satisfied matches:Ingo Schwarze
we can do this in the frontend; from kristaps@.
2012-04-15Handle multi-line NAME sections in man(7); from kristaps@.Ingo Schwarze
2012-04-15Two bugfixes regarding the -width and -offset macro arguments:Ingo Schwarze
1) They consume the next argument even if it starts with a dash. 2) When -width is the last argument on the line such that the actual width argument is missing, downgrade from a fatal to a non-fatal error, just like for -offset. The formatting still doesn't agree with groff, but at least we don't die any longer. Item 2 was observed and that part of the patch coded by kristaps@, who found lots of instances of this particular formatting error in Mac OSX manuals.
2012-04-15fix a leakJonathan Gray
ok krw@
2012-04-15fix some leaksJonathan Gray
ok krw@
2012-04-15fix a leakJonathan Gray
ok krw@
2012-04-14update to 1.0.15Robert Nagy
2012-04-14User area hasn't been double-mapped in a long timePhilip Guenthe
2012-04-14If single threading is active, drirect the SIGKILL signal we send to orphanedMark Kettenis
traced processes to the active thread, otherwise we will deadlock resulting in an unkillable stopped process. ok guenther@
2012-04-14clean-out ALL generated filesMarc Espie
2012-04-14oopsMarc Espie
2012-04-14crapola-generated, no need to do it each time.Marc Espie
2012-04-14glue and manpage, which I forgot aboutMarc Espie
2012-04-14minor update to 3.7.12.1Marc Espie
2012-04-14improve readabilityEric Faurot
ok gilles@
2012-04-14zap parse.y, it's NOT yacc source code, and otherwise make depend will thinkMarc Espie
parse.[ch] comes from it.
2012-04-14sqlite3 shell, vendor 3.7.11Marc Espie
2012-04-14OpenBSD compile gooMarc Espie
2012-04-14include file, mostly from sqlite.h.in, with parts un-autoconf'd sinceMarc Espie
we don't need most of the portability goo
2012-04-14extra src for us.Marc Espie
regen parse.c/parse.h with "lemon", no need to recompile every time. pthread_stub.c might(?) be needed for clean non-pthreads operation (to be checked, the nomutex stuff looks interesting)
2012-04-14sqlite 3.7.11 library, vendor sourcesMarc Espie
2012-04-14Make kvm_getfile2() have a fighting change to work correctly on crashPhilip Guenthe
dumps
2012-04-14Update to match nprocs-->nprocess/nthreads changesPhilip Guenthe
2012-04-14Need to read in the vmspace to dig out the root of the rb-treePhilip Guenthe
2012-04-14Kill Boehms GC dead.Christiano F. Haesbaert
ok mikeb@ sure deraadt@
2012-04-14read returns ssize_t not int.Christiano F. Haesbaert
ok mikeb@
2012-04-14Add new mutex type, PTHREAD_MUTEX_STRICT_NP which checks for applicationKurt Miller
errors similar to PTHREAD_MUTEX_ERRORCHECK, however upon error it aborts. The rational is that many applications don't check the return values on pthread functions and will miss the errors that ERRORCHECK returns. PTHREAD_MUTEX_STRICT_NP will be our default mutex type for awhile okay guenther@ dcoppa@
2012-04-14only define DEBUG internallyEric Faurot
2012-04-14Kill useless memset.Christiano F. Haesbaert
ok mikeb@ "looks good" deraadt@
2012-04-14Don't return from main with 2 uppon issuing double -c option, printChristiano F. Haesbaert
proper usage() message. ok mikeb@ "looks good" deraadt@
2012-04-14Add CDIAGFLAGS infrastructure.Christiano F. Haesbaert
Fix signed vs unsigned and dup symbol shadow. ok mikeb@ "looks good" deraadt@
2012-04-14Do not just return in case the provided control buffer is too short sinceClaudio Jeker
that leaks all the file pointers. Instead make sure that the exit path via restart: -> out: does not free the uninitialized pointer. OK deraadt@ guenther@
2012-04-14Use DLT_LOOP for all tunneling interfaces.YASUOKA Masahiko
Byte order adjustment for bpf was hidden behind bpf_mtap_af() and sizeof(u_int32_t) is used for length of the bpf header. tested by sebastia and mxb at alumni.chalmers.se. ok claudio
2012-04-14Import asr, an experimental async resolver implementation.Eric Faurot
The idea is to eventually replace the existing resolver with something better. Time to start working on it in tree. ok deraadt@
2012-04-14Free tmp buffer in case the cluster allocation failed. Found by David Hill.Claudio Jeker
2012-04-14regenMatthieu Herrb
2012-04-14add Radeon Mobility HD 5430Matthieu Herrb
2012-04-14Revert rev 1.58, as it frees an uninitialized pointerPhilip Guenthe
ok deraadt@
2012-04-14remove libf2c, hasn't been built since it was moved to ports in 2010.Jonathan Gray
ok miod@ espie@
2012-04-13Kill "goto again" uppon EINTR and check EWOULDBLOCK in accept(2).Christiano F. Haesbaert
Also make the code more similar to the other daemons. "you can go ahead" deraadt@.