mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-21 14:39:10 +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));
|