thread_helpers.h 151 Bytes
Newer Older
1
#include "thread.h"
2 3 4 5 6 7 8

void run_in_parallel(
	int repeats,
	int threads,
	void *(*func)(void *),
	void (*before_test)(void),
	void (*after_test)(void));