Blame src/regression/pthread-robust-detach.c

Szabolcs Nagy 629dbf
// commit 12e1e324683a1d381b7f15dd36c99b37dd44d940 2015-04-10
Szabolcs Nagy 629dbf
// robust mutex should work with detached threads too
Szabolcs Nagy 629dbf
#include <pthread.h>
Szabolcs Nagy 629dbf
#include <string.h>
Szabolcs Nagy 629dbf
#include <errno.h>
Szabolcs Nagy 53a492
#include <time.h>
Szabolcs Nagy 629dbf
#include "test.h"
Szabolcs Nagy 629dbf
Szabolcs Nagy bdf66f
#define TX(r,f,x) ( ((r)=(f))==x || \
Szabolcs Nagy bdf66f
 (t_error(#f" failed: (pshared==%d) got %d \"%s\" want %d \"%s\"\n", pshared, r, strerror(r), x, strerror(x)), 0) )
Szabolcs Nagy 629dbf
#define T(r,f) TX(r,f,0)
Szabolcs Nagy 629dbf
Szabolcs Nagy 629dbf
static pthread_barrier_t barrier2;
Szabolcs Nagy bdf66f
static int pshared;
Szabolcs Nagy 629dbf
Szabolcs Nagy 629dbf
static void *start_lock(void *arg)
Szabolcs Nagy 629dbf
{
Szabolcs Nagy 629dbf
	pthread_mutex_lock(arg);
Szabolcs Nagy 629dbf
	pthread_barrier_wait(&barrier2);
Szabolcs Nagy 629dbf
	return 0;
Szabolcs Nagy 629dbf
}
Szabolcs Nagy 629dbf
Szabolcs Nagy bdf66f
static void f()
Szabolcs Nagy 629dbf
{
Szabolcs Nagy 629dbf
	pthread_t td;
Szabolcs Nagy 629dbf
	int r;
Szabolcs Nagy 629dbf
	pthread_mutexattr_t mtx_a;
Szabolcs Nagy 629dbf
	pthread_mutex_t mtx;
Szabolcs Nagy 53a492
	struct timespec ts;
Szabolcs Nagy 629dbf
Szabolcs Nagy 629dbf
	T(r, pthread_barrier_init(&barrier2, 0, 2));
Szabolcs Nagy 629dbf
	T(r, pthread_mutexattr_init(&mtx_a));
Szabolcs Nagy 629dbf
	T(r, pthread_mutexattr_setrobust(&mtx_a, PTHREAD_MUTEX_ROBUST));
Szabolcs Nagy bdf66f
	if (pshared)
Szabolcs Nagy bdf66f
		T(r, pthread_mutexattr_setpshared(&mtx_a, PTHREAD_PROCESS_SHARED));
Szabolcs Nagy 629dbf
	T(r, pthread_mutex_init(&mtx, &mtx_a));
Szabolcs Nagy 629dbf
	T(r, pthread_create(&td, 0, start_lock, &mtx));
Szabolcs Nagy 629dbf
	T(r, pthread_detach(td));
Szabolcs Nagy 629dbf
	pthread_barrier_wait(&barrier2);
Szabolcs Nagy bdf66f
	pthread_barrier_destroy(&barrier2);
Szabolcs Nagy 53a492
Szabolcs Nagy bdf66f
	// enough time to ensure that the detached thread is dead
Szabolcs Nagy 53a492
	clock_gettime(CLOCK_REALTIME, &ts);
Szabolcs Nagy 53a492
	ts.tv_nsec += 100*1000*1000;
Szabolcs Nagy 53a492
	if (ts.tv_nsec >= 1000*1000*1000) {
Szabolcs Nagy 53a492
		ts.tv_sec++;
Szabolcs Nagy 53a492
		ts.tv_nsec -= 1000*1000*1000;
Szabolcs Nagy 53a492
	}
Szabolcs Nagy 53a492
Szabolcs Nagy 53a492
	TX(r, pthread_mutex_timedlock(&mtx, &ts), EOWNERDEAD);
Szabolcs Nagy bdf66f
}
Szabolcs Nagy bdf66f
Szabolcs Nagy bdf66f
int main(void)
Szabolcs Nagy bdf66f
{
Szabolcs Nagy bdf66f
	// test non-pshared and pshared robust mutexes as well
Szabolcs Nagy bdf66f
	f();
Szabolcs Nagy bdf66f
	pshared = 1;
Szabolcs Nagy bdf66f
	f();
Szabolcs Nagy 629dbf
	return t_status;
Szabolcs Nagy 629dbf
}