Remove $FreeBSD$: one-line .c patternRemove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDThe SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catchup to that fact and revert to their recommended match of
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDThe SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catchup to that fact and revert to their recommended match of BSD-2-Clause.Discussed with: pfgMFC After: 3 daysSponsored by: Netflix
show more ...
lib: further adoption of SPDX licensing ID tags.Mainly focus on files that use BSD 2-Clause license, however the tool Iwas using mis-identified many licenses so this was mostly a manual - errorpr
lib: further adoption of SPDX licensing ID tags.Mainly focus on files that use BSD 2-Clause license, however the tool Iwas using mis-identified many licenses so this was mostly a manual - errorprone - task.The Software Package Data Exchange (SPDX) group provides a specificationto make it easier for automated tools to detect and summarize well knownopensource licenses. We are gradually adopting the specification, notingthat the tags are considered only advisory and do not, in any way,superceed or replace the license texts.
Use the size of struct fpreg rather than of the pointer to it when copyingthe FPU state.Reviewed by: marcelApproved by: re (kib)MFC after: 1 week
libc_r_* library is no more required, so just axe it.Approved by: marcel, emasteSponsored by: Sandvine Incorporated
Cleanup for WARNS 3.
Include string.h for memcpy() and memcmp().
Add code to implement register structure converter.
Correct the mess I made by committing from the wrong tree. Mostnotably, this restores some of the contents in thread_db.h as wellas David Xu's copyright notice. This also fixes the includes inthe
Correct the mess I made by committing from the wrong tree. Mostnotably, this restores some of the contents in thread_db.h as wellas David Xu's copyright notice. This also fixes the includes inthe MD libpthread files which Scott tried to provide a quick fixfor.Pointy hat: marcel
Add rudimentary support and stubs for libthr and libc_r on alpha, amd64,i386, ia64 and sparc64. Add stubs for alpha, amd64, ia64 and sparc64 forlibpthread.Restructure the source files to avoid un
Add rudimentary support and stubs for libthr and libc_r on alpha, amd64,i386, ia64 and sparc64. Add stubs for alpha, amd64, ia64 and sparc64 forlibpthread.Restructure the source files to avoid unnecessary use of subdirectoriesthat also force us to use non-portable compilation flags to deal withthe uncommon compilation requirements (building archive libraries forlinkage into a shared library).The libpthread support has been copied from the original local andcleaned-up to make them WARNS=2 clean.that also force us to use non-portable compilation flags to deal withthe uncommon compilation requirements (building archive libraries forlinkage into a shared library).The libpthread support has been copied from the original local andcleaned-up to make them WARNS=2 clean.Tested on: amd64, i386, ia64