| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
|
|
| |
PR: docs/156796
Submitted by: Jean-Yves Migeon <jeanyves.migeon free.fr>
MFC after: 3 days
Notes:
svn path=/head/; revision=221401
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Of course, strerror_r() may still fail with ERANGE.
Although the POSIX specification said this could fail with EINVAL and
doing this likely indicates invalid use of errno, most other
implementations permitted it, various POSIX testsuites require it to
work (matching the older sys_errlist array) and apparently some
applications depend on it.
PR: standards/151316
MFC after: 1 week
Notes:
svn path=/head/; revision=220376
|
|
|
|
|
|
|
|
|
| |
POSIX.1-2008.
MFC after: 1 week
Notes:
svn path=/head/; revision=219803
|
|
|
|
|
|
|
|
|
| |
their implementations aren't in the same files. Introduce LIBC_ARCH
and use that in preference to MACHINE_CPUARCH. Tested by amd64 and
powerpc64 builds (thanks nathanw@)
Notes:
svn path=/head/; revision=211774
|
|
|
|
|
|
|
|
| |
Prefer MACHNE_CPUARCH to MACHINE_ARCH in most contexts where you want
to test of all the CPUs of a given family conform.
Notes:
svn path=/head/; revision=211725
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
bottom of the manpages and order them consistently.
GNU groff doesn't care about the ordering, and doesn't even mention
CAVEATS and SECURITY CONSIDERATIONS as common sections and where to put
them.
Found by: mdocml lint run
Reviewed by: ru
Notes:
svn path=/head/; revision=208027
|
|
|
|
|
|
|
|
| |
Pointy hat to: delphij
MFC after: 1 month
Notes:
svn path=/head/; revision=205108
|
|
|
|
|
|
|
| |
MFC after: 1 month
Notes:
svn path=/head/; revision=205100
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
blog posting [1].
- Use word-sized test for unaligned pointer before working
the hard way.
Memory page boundary is always integral multiple of a word
alignment boundary. Therefore, if we can access memory
referenced by pointer p, then (p & ~word mask) must be also
accessible.
- Better utilization of multi-issue processor's ability of
concurrency.
The previous implementation utilized a formular that must be
executed sequentially. However, the ~, & and - operations can
actually be caculated at the same time when the operand were
different and unrelated.
The original Hacker's Delight formular also offered consistent
performance regardless whether the input would contain
characters with their highest-bit set, as it catches real
nul characters only.
These two optimizations has shown further improvements over the
previous implementation on microbenchmarks on i386 and amd64 CPU
including Pentium 4, Core Duo 2 and i7.
[1] http://vger.kernel.org/~davem/cgi-bin/blog.cgi/2010/03/08#strlen_1
MFC after: 1 month
Notes:
svn path=/head/; revision=205099
|
|
|
|
| |
Notes:
svn path=/head/; revision=203485
|
|
|
|
|
|
|
|
| |
This makes the implementation a bit more consistent with strdup(3),
which uses strlen(3).
Notes:
svn path=/head/; revision=203391
|
|
|
|
|
|
|
| |
MFC after: 2 weeks
Notes:
svn path=/head/; revision=202916
|
|
|
|
| |
Notes:
svn path=/head/; revision=200095
|
|
|
|
|
|
|
|
|
| |
PR: 141037
Submitted by: Jeremy Huddleston <jeremyhu@apple.com>
MFC after: 3 days
Notes:
svn path=/head/; revision=199988
|
|
|
|
|
|
|
|
|
|
|
| |
appeared in FreeBSD.
PR: 133785
Submitted by: Ulrich Spoerlein <uqs@spoerlein.net>
MFC after: 3 days
Notes:
svn path=/head/; revision=191414
|
|
|
|
|
|
|
|
| |
because there is no way to figure that out based on the file mode
itself. Make the manual page match reality.
Notes:
svn path=/head/; revision=191055
|
|
|
|
|
|
|
| |
Approved by: rwatson (mentor)
Notes:
svn path=/head/; revision=190798
|
|
|
|
|
|
|
|
| |
Submitted by: Florian Smeets <flo kasimir com>
MFC after: 3 days
Notes:
svn path=/head/; revision=190266
|
|
|
|
| |
Notes:
svn path=/head/; revision=189361
|
|
|
|
|
|
|
| |
I missed this file in my previous commit.
Notes:
svn path=/head/; revision=189137
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
wcscasecmp(), and wcsncasecmp().
- Make some previously non-standard extensions visible
if POSIX_VISIBLE >= 200809.
- Use restrict qualifiers in stpcpy().
- Declare off_t and size_t in stdio.h.
- Bump __FreeBSD_version in case the new symbols (particularly
getline()) cause issues with ports.
Reviewed by: standards@
Notes:
svn path=/head/; revision=189136
|
|
|
|
|
|
|
|
| |
The annotation mainly just serves as a hint that they're not intended
for use with overlapping strings.
Notes:
svn path=/head/; revision=189133
|
|
|
|
| |
Notes:
svn path=/head/; revision=188295
|
|
|
|
|
|
|
| |
from the ANSI-C prototype due to the 'int promotion' rule.
Notes:
svn path=/head/; revision=188098
|
|
|
|
|
|
|
|
|
| |
- use nul when we are looking for a terminating character where appropriate
Approved by: imp
Notes:
svn path=/head/; revision=188080
|
|
|
|
|
|
|
|
|
|
|
| |
- Use the correct term 'long mode'. [2]
- style(9) for return value. [3]
Submitted by: Ben Kaduk <minimarmot gmail com> [1],
obrien [2], scf [3]
Notes:
svn path=/head/; revision=187707
|
|
|
|
|
|
|
|
|
|
|
|
| |
reducing branches and doing word-sized operation.
The idea is taken from J.T. Conklin's x86_64 optimized version of strlen(3)
for NetBSD, and reimplemented in C by me.
Discussed on: -arch@
Notes:
svn path=/head/; revision=187700
|
|
|
|
|
|
|
|
|
|
| |
FreeBSD 7.1
Submitted by: Jan Henrik Sylvester <me janh de>
MFC after: 3 days
Notes:
svn path=/head/; revision=187147
|
|
|
|
|
|
|
|
|
| |
o Use an ISC-style license as did by the author.
Obtained from: OpenBSD
Notes:
svn path=/head/; revision=187091
|
|
|
|
|
|
|
|
|
| |
o Use ISC style copyright as did by the author.
Obtained from: OpenBSD
Notes:
svn path=/head/; revision=187090
|
|
|
|
| |
Notes:
svn path=/head/; revision=186957
|
|
|
|
| |
Notes:
svn path=/head/; revision=185789
|
|
|
|
|
|
|
|
|
|
|
| |
Copyright attribution is kept the same as in original NetBSD source.
Submitted by: Florian Smeets <flo kasimir com>
Obtained from: NetBSD
MFC after: 2 weeks
Notes:
svn path=/head/; revision=185690
|
|
|
|
|
|
|
|
| |
Submitted by: Florian Smeets <flo kasimir com>
MFC after: 2 weeks
Notes:
svn path=/head/; revision=185689
|
|
|
|
|
|
|
| |
Reviewed by: trasz
Notes:
svn path=/head/; revision=185641
|
|
|
|
|
|
|
|
|
|
|
| |
on long long arguments.
Reviewed by: bde (previous version, that included asm implementation
for all ffs and fls functions on i386 and amd64)
MFC after: 2 weeks
Notes:
svn path=/head/; revision=184587
|
|
|
|
| |
Notes:
svn path=/head/; revision=184586
|
|
|
|
|
|
|
|
|
|
|
| |
- ANSIfy;
- Convert do {} while loop -> while {} for clarity;
- Sync RCS ID with OpenBSD;
Obtained from: OpenBSD
Notes:
svn path=/head/; revision=184059
|
|
|
|
|
|
|
| |
Submitted by: Christoph Mallon <christoph.mallon gmx.de>
Notes:
svn path=/head/; revision=184055
|
|
|
|
| |
Notes:
svn path=/head/; revision=183990
|
|
|
|
|
|
|
| |
Obtained from: OpenBSD
Notes:
svn path=/head/; revision=178051
|
|
|
|
|
|
|
| |
Prompted by: Glenn Halperin, Symbian Software
Notes:
svn path=/head/; revision=174553
|
|
|
|
| |
Notes:
svn path=/head/; revision=169092
|
|
|
|
|
|
|
|
|
| |
clause.
# If I've done so improperly on a file, please let me know.
Notes:
svn path=/head/; revision=165903
|
|
|
|
|
|
|
|
| |
PR: docs/94803
MFC after: 3 days
Notes:
svn path=/head/; revision=163274
|
|
|
|
|
|
|
|
| |
first sentence back to the way it was. Add a second sentence that
explains the case when strcmp is called.
Notes:
svn path=/head/; revision=161274
|
|
|
|
| |
Notes:
svn path=/head/; revision=159644
|
|
|
|
| |
Notes:
svn path=/head/; revision=156613
|
|
|
|
|
|
|
| |
Reviewed by: davidxu
Notes:
svn path=/head/; revision=156608
|
|
|
|
| |
Notes:
svn path=/head/; revision=152746
|