summaryrefslogtreecommitdiffstats
path: root/lib/libc/alpha/gen/sigsetjmp.S
Commit message (Collapse)AuthorAgeFilesLines
* Remove alpha left-overs.ru2006-08-221-64/+0
|
* Use __FBSDID.obrien2003-01-191-2/+1
|
* Remove _THREAD_SAFE and make libc thread-safe by default bydeischen2001-01-241-11/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Remove duplicate FreeBSD id tags.jhb2000-08-211-1/+0
|
* Add FreeBSD Id tags.obrien2000-05-101-1/+2
|
* Remove unnecessary alternate entry points for *setjmp(). Make the mainjasone2000-01-201-6/+11
| | | | | | | entry point the standard name when not compiling libc_r (for example, longjmp is the main entry point instead of __longjmp). Suggested by: bde
* Make minor entry point changes to support libc_r.jasone2000-01-191-2/+2
|
* Add three-tier symbol naming in support of POSIX thread cancellationjasone2000-01-121-4/+10
| | | | | | points. For library functions, the pattern is __sleep() <-- _libc_sleep() <-- sleep(). The arrows represent weak aliases. For system calls, the pattern is _read() <-- _libc_read() <-- read().
* Import sources from NetBSD, tweaked for building in FreeBSD.jb1998-03-091-0/+62
OpenPOWER on IntegriCloud