Up to [cvs.NetBSD.org] / src / tests / lib / libpthread
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.2 / (download) - annotate - [select for diffs], Thu May 14 08:34:19 2020 UTC (3 years ago) by msaitoh
Branch: MAIN
CVS Tags: netbsd-10-base,
netbsd-10,
cjep_sun2x-base1,
cjep_sun2x-base,
cjep_sun2x,
cjep_staticlib_x-base1,
cjep_staticlib_x-base,
cjep_staticlib_x,
HEAD
Changes since 1.1: +3 -3
lines
Diff to previous 1.1 (colored)
Remove extra semicolon.
Revision 1.1.2.2 / (download) - annotate - [select for diffs], Mon Jun 10 22:10:07 2019 UTC (3 years, 11 months ago) by christos
Branch: phil-wifi
Changes since 1.1.2.1: +237 -0
lines
Diff to previous 1.1.2.1 (colored) to branchpoint 1.1 (colored) next main 1.2 (colored)
Sync with HEAD
Revision 1.1.2.1, Wed Apr 24 11:43:19 2019 UTC (4 years, 1 month ago) by christos
Branch: phil-wifi
Changes since 1.1: +0 -237
lines
FILE REMOVED
file t_thrd.c was added on branch phil-wifi on 2019-06-10 22:10:07 +0000
Revision 1.1 / (download) - annotate - [select for diffs], Wed Apr 24 11:43:19 2019 UTC (4 years, 1 month ago) by kamil
Branch: MAIN
CVS Tags: phil-wifi-20200421,
phil-wifi-20200411,
phil-wifi-20200406,
phil-wifi-20191119,
phil-wifi-20190609,
netbsd-9-base,
netbsd-9-3-RELEASE,
netbsd-9-2-RELEASE,
netbsd-9-1-RELEASE,
netbsd-9-0-RELEASE,
netbsd-9-0-RC2,
netbsd-9-0-RC1,
netbsd-9,
is-mlppp-base,
is-mlppp
Branch point for: phil-wifi
Add a complete C11 threads(3) implementation C11 Thread support library is a portable threading C API between OSs, similar to std::threads in the C++ world. The library is implemented as a thin shim over POSIX interfaces. NetBSD implements the API as a part of the POSIX threading library (libpthread(3)). C11 threads(3) are in the process of making them an integral part of the POSIX standard. The interface has been implemented in major OSs and used with stopgap libraries for older versions of them. C11 threading library is already used (with a stopgap implementation) in the NetBSD distribution in MESA. Original implementation by myself from 2016. ATF tests are new and cover almost all interfaces. Proposed on tech-userlevel@.