| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
Change __dtoa to not free the string it allocated the previous time it was
called. The caller now frees the string after usage if appropiate.
PR: 15070
|
|
|
|
| |
remove lconv.c
|
|
|
|
| |
this is already usable one.
|
| |
|
|
|
|
|
| |
structures exported.
Protect timelocal.h from multiple inclusions.
|
|
|
|
| |
information to fill return structure. Remove unused anymore stub.
|
|
|
|
|
|
|
| |
LC_MONETARY, LC_NUMERIC and LC_MESSAGES. Remove stub functions since they
don't need anymore.
Reviewed by: silence on -i18n
|
| |
|
|
|
|
| |
and as list items (to get the correct offset).
|
| |
|
|
|
|
| |
Tested by: knu, sobomax and other #bsdcode'rs
|
|
|
|
|
|
| |
to be the same as -ragged in the current implementation) to
-ragged. With mdocNG, -filled displays produce the correct
output, formatted and justified to both margins.
|
| |
|
|
|
|
| |
Compatability is not an existing english word.
|
|
|
|
|
|
| |
Compatability is not an existing english word.
Add $FreeBSD$.
|
|
|
|
|
|
| |
Seperate does not exist in the english language.
Submitted to look at by: kris
|
| |
|
|
|
|
| |
poisoning having not reached here).
|
|
|
|
| |
Declare all the interfaces documented in usb.3 (2 were missing).
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Forgotten in: rev.1.58, which was not Submitted by: bde (I requested
untangling parts of the crypto mess).
|
|
|
|
| |
Submitted by: Loren James Rittle <rittle@latour.rsch.comm.mot.com>
|
| |
|
|
|
|
|
| |
Submitted by: Mike Heffner <mheffner@vt.edu>
Reviewed by: freebsd-audit
|
|
|
|
|
| |
PR: docs/23936
Submitted by: Garret Rooney <rooneg@rpi.edu>
|
| |
|
|
|
|
| |
Submitted by: Mike Heffner <mheffner@vt.edu>
|
|
|
|
|
|
| |
A make buildworld was done but not with the committed pthread_private.h.
Reported by: Manfred Antar <null@pozo.com>
|
| |
|
|
|
|
|
|
| |
Add another check for thread library initialization (jdp, we
really need a way to get _thread_init called at program start
before any constructors are run).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
and treating (almost) all system calls the same way:
__sys_foo - actual syscall
foo, _foo - weak definitions to __sys_foo
Change PSEUDO syscalls (currently only _exit and _getlogin) to
be __sys_foo (T) and _foo (W).
Add $FreeBSD$ to a few files to satisfy commitprep.
Suggested by: bde
|
| |
|
| |
|
|
|
|
|
| |
PR: 24659
realhostname_sa() stuff submitted by: Jim.Pirzyk@disney.com
|
|
|
|
|
|
| |
http://X68000.startshop.co.jp/~68user/cgi-bin/wwwboard.cgi?log=1673
Obtained from: KAME
|
| |
|
| |
|
|
|
|
| |
actual geometry before switching to the graphics mode.
|
|
|
|
| |
Submitted by: Maxim Sobolev <sobomax@FreeBSD.org>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
_foo - wrapped system call
foo - weak definition to _foo
and for cancellation points:
_foo - wrapped system call
__foo - enter cancellation point, call _foo(), leave
cancellation point
foo - weak definition to __foo
Change use of global _thread_run to call a function to get the
currently running thread.
Make all pthread_foo functions weak definitions to _pthread_foo,
where _pthread_foo is the implementation. This allows an application
to provide its own pthread functions.
Provide slightly different versions of pthread_mutex_lock and
pthread_mutex_init so that we can tell the difference between
a libc mutex and an application mutex. Threads holding mutexes
internal to libc should never be allowed to exit, call signal
handlers, or cancel.
Approved by: -arch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
adding (weak definitions to) stubs for some of the pthread
functions. If the threads library is linked in, the real
pthread functions will pulled in.
Use the following convention for system calls wrapped by the
threads library:
__sys_foo - actual system call
_foo - weak definition to __sys_foo
foo - weak definition to __sys_foo
Change all libc uses of system calls wrapped by the threads
library from foo to _foo. In order to define the prototypes
for _foo(), we introduce namespace.h and un-namespace.h
(suggested by bde). All files that need to reference these
system calls, should include namespace.h before any standard
includes, then include un-namespace.h after the standard
includes and before any local includes. <db.h> is an exception
and shouldn't be included in between namespace.h and
un-namespace.h namespace.h will define foo to _foo, and
un-namespace.h will undefine foo.
Try to eliminate some of the recursive calls to MT-safe
functions in libc/stdio in preparation for adding a mutex
to FILE. We have recursive mutexes, but would like to avoid
using them if possible.
Remove uneeded includes of <errno.h> from a few files.
Add $FreeBSD$ to a few files in order to pass commitprep.
Approved by: -arch
|
| |
|
| |
|