mirror of
https://github.com/libgit2/libgit2.git
synced 2026-01-25 11:06:32 +00:00
9 lines
151 B
C
9 lines
151 B
C
#include "thread.h"
|
|
|
|
void run_in_parallel(
|
|
int repeats,
|
|
int threads,
|
|
void *(*func)(void *),
|
|
void (*before_test)(void),
|
|
void (*after_test)(void));
|