History log of /netbsd-src/tests/lib/libpthread/t_join.c (Results 1 – 10 of 10)
Revision Date Author Comments
# 8265fdce 29-Jan-2020 kamil <kamil@NetBSD.org>

Fix the t_join test

For pthread_attr_get_np() attr should be initialized prior to the call by
using pthread_attr_init(3). pthread_getattr_np() does this
automatically so switch to it.


# 5f391f4a 02-Jul-2017 joerg <joerg@NetBSD.org>

Export the guard size of the main thread via vm.guard_size. Add a
complementary writable sysctl for the initial guard size of threads
created via pthread_create. Let the existing attribut accessors d

Export the guard size of the main thread via vm.guard_size. Add a
complementary writable sysctl for the initial guard size of threads
created via pthread_create. Let the existing attribut accessors do the
right thing. Raise the default guard size for threads to 64KB.

show more ...


# e07445e0 12-Mar-2012 joerg <joerg@NetBSD.org>

Also exercise pthread_attr_setstacksize.


# 1b3763c6 12-Dec-2011 joerg <joerg@NetBSD.org>

Remove bogus check that (a) depends uninitialised memory (b) overflows a
buffer.


# ef311a87 22-Aug-2011 dholland <dholland@NetBSD.org>

Requires stdint.h.


# 236a4409 30-Nov-2010 joerg <joerg@NetBSD.org>

Test alignment of constructor / destructor calls as well as the stack
of new threads. Currently implement for i386 and AMD64.


# 846cca4c 29-Jul-2010 hans <hans@NetBSD.org>

Revert to 1.1 and fix the casts by using uintptr_t. Ok jruoho.


# f560676c 29-Jul-2010 jruoho <jruoho@NetBSD.org>

One more cast.


# 07456be2 29-Jul-2010 jruoho <jruoho@NetBSD.org>

Fix build failure on AMD64, noted by njoly@.


# b226f3d0 28-Jul-2010 jruoho <jruoho@NetBSD.org>

Add a simple test for pthread_join(3).