mirror of
https://git.kernel.org/pub/scm/libs/libcap/libcap.git
synced 2026-01-28 02:14:50 +00:00
This is more general than just working with -lpthread threads, and addresses the following bug reports: https://bugzilla.kernel.org/show_bug.cgi?id=219174 https://bugzilla.kernel.org/show_bug.cgi?id=218607 https://bugzilla.kernel.org/show_bug.cgi?id=217476 Signed-off-by: Andrew G. Morgan <morgan@kernel.org>
10 lines
172 B
C
10 lines
172 B
C
#ifndef WEAVER_H
|
|
#define WEAVER_H
|
|
|
|
pthread_t weaver_thread(void);
|
|
void weaver_setup(void);
|
|
int weaver_waitforit(int n);
|
|
void weaver_terminate(void);
|
|
|
|
#endif /* WEAVER_H */
|