libcap/tests/weaver.h
Andrew G. Morgan 12e163ac21 Rewrite libpsx to work with native linux threads.
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>
2024-10-25 22:58:46 -07:00

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 */