summaryrefslogtreecommitdiffstats
path: root/lib/libc/regex/regexec.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-04-04use the provided ALIGN() macro instead of re-inventing a square wheel.eric1-7/+3
prodded by deraadt@
2013-04-04Fix bug where clear_remove() and clear_inodedeps() would not iteratebeck1-5/+5
over the entire pagedep and inodedep hash tables due to an off-by-one mistake in loops. Spotted by and diff from Pedro Martelletto. Sent upstream to Kirk and also fixed in FreeBSD. ok otto@ millert@
2013-04-04syncderaadt2-10/+0
2013-04-04zap redundant assignmentshalex2-4/+2
2013-04-04Make our dump(8) honour the "nodump" flag for directories, effectivelyzhuk2-39/+73
disabling dumping their contents. input and ok otto@ millert@ man page bits input and ok jmc@
2013-04-04remove BIN{MODE,GRP,OWN} since bsd.own.mk is already included.jasper1-6/+1
ok bmercer@
2013-04-04add lists for octeonjasper5-0/+3029
2013-04-04Show only available actions in RC script usage messages.zhuk1-5/+18
Also, prettify representation of actions list a bit. a lot of input and ok halex@ aja@ also ok schwarze@ small nit spotted by marc@ "makes a lot of sense to me" todd@
2013-04-03properly follow the CNAME chain in reverse lookupseric1-5/+13
spotted by sthen@
2013-04-03Return ENOENT instead of EBADF if looking up a gem object fails.kettenis4-16/+16
Return EINVAL instead of EBADF if the same object is specified twice in an execbuffer2 call. This is what Linux does.
2013-04-03Use MSG_NOSIGNAL when writing DNS queries over TCP sockets to ensurematthew1-2/+7
we don't trigger SIGPIPE. ok millert
2013-04-03Fix a typo in the bge_ape_lock_init() function.brad1-2/+2
From David Imhoff. ok dlg@ sthen@
2013-04-03handle larger time_t types; toss some unused codederaadt1-36/+5
ok guenther
2013-04-03Make it possible to explicitly specify the number of vcpus and the amountkettenis1-9/+19
of memory for the primary domain. As a bonus this prevents people from shooting themselves in the foot by creating two domains names "primary".
2013-04-03fix comment detailing the memory mapjasper1-8/+4
from syuu@
2013-04-03move i915_gem_find_inactive_object() into i915_gem_evict.cjsg3-49/+46
2013-04-03fix EDID detailed timing frame ratejsg1-1/+2
from linux 3.8.5
2013-04-03fix EDID detailed timing vsync parsingjsg1-2/+2
from linux 3.8.5
2013-04-03match linux 3.8.5 and backout the 'try to train DP even harder' commitjsg1-2/+2
which introduced a bogus check that could lead to an infinite loop in some eDP setups.
2013-04-03do not assume time_t and timeval.tv_sec are the same typederaadt2-4/+7
2013-04-03Update a comment about standards requirementsguenther1-4/+4
2013-04-03LFS option is long goneguenther1-3/+1
2013-04-03do not assume time_t and timeval.tv_sec are the same typederaadt1-2/+5
ok guenther
2013-04-03Drop an unnecessary #includeguenther1-3/+2
reminded by schwarze@
2013-04-03Handle big time_t.guenther2-23/+23
Use clock_gettime(CLOCK_MONOTONIC) instead of gettimeofday() when measuring time intervals for debugging output. ok ratchov@
2013-04-03Set the stream orientation in open_{,w}memstream().guenther3-3/+19
Check it in the regress test ok mpi@
2013-04-03Handle big time_tguenther1-2/+2
ok deraadt@
2013-04-02add comment for how EINPROGRESS is handled there.eric1-1/+6
2013-04-02Use __off_t instead of off_t to make this usable on its own even in ourkettenis1-3/+3
default compilation environment. ok espie@, millert@, guenther@
2013-04-02make sure we always point before the current offset.eric1-2/+2
spotted by matthew@
2013-04-02Revert rev 1.21 to fix a race condition where multiple mkdir -p's tryingnaddy1-11/+7
to create overlapping paths in parallel could error out. ok millert@
2013-04-02Use macros sotoinpcb() and intotcpcb() instead of casts. Use NULLbluhm7-24/+23
instead of 0 for pointers. No binary change. OK mpi@
2013-04-02better implementation for tcp_read() that can get the packet length ineric2-23/+35
multiple read. prodded by deraadt@
2013-04-02- Have the tht(4) ioctl handler for SIOCSIFFLAGS set ENETRESETbrad1-4/+6
instead of calling tht_iff() directly. - Add a comment in tht_up() about the use of tht_iff(). - Have tht_iff() set IFF_ALLMULTI when in promisc mode. ok dlg@
2013-04-02Set the IFF_ALLMULTI flag as appropriate.brad1-6/+7
ok dlg@
2013-04-02Get rid of SYSCALL_G7RFLAG. iIt's been deprecated for a long time already,kettenis2-7/+6
and we've started using %g7 as a per-thread register now. If you have any binaries left that use this flag they'll probably crash and burn!
2013-04-02Remove Evergreen ids people have incorrectly added to radeondrm.jsg1-5/+1
There is currently no support for Evergreen/R800. ok mpi@
2013-04-02change log format to fix warninggilles1-3/+3
2013-04-02Instead of storing the link-level address of every interface in a globalmpi4-34/+20
array indexed by interface numbers, add a new field to the interface descriptor pointing to it. claudio@ and todd@ like it, ok mikeb@
2013-04-02Let this work on gcc < 4, which don't accept /dev/null as a valid input file.miod1-10/+28
2013-04-02syncderaadt1-0/+2
2013-04-02Handle big time_tguenther2-6/+6
ok deraadt@
2013-04-02handle large time_tderaadt1-2/+5
2013-04-02Pull in <sys/_types.h> instead of <machine/_types.h> in prep for the futureguenther2-4/+4
ok deraadt@
2013-04-02for parsing time values, fall back to atoll() for time_tderaadt1-2/+2
ok guenther
2013-04-02kill useless castderaadt1-2/+2
2013-04-02handle larger time_tderaadt1-2/+2
ok guenther
2013-04-02handle large time_t in DEBUG codederaadt1-2/+2
2013-04-02handle time_t which is not u_int32_tderaadt1-3/+5
ok guenther
2013-04-02Use internal types instead of the old BSD u_int#_t types in theguenther1-5/+5
standard portion of the header. Most of the diff from James Turner (james (at) calminferno.net)