From edc34e77d5f19aa2a697f16d9e2d24677dafb506 Mon Sep 17 00:00:00 2001 From: TazyFoundSoup Date: Mon, 8 Jun 2026 10:35:16 +1000 Subject: feat(thread): Implement pthread bridge and fix allocator usage in wrapper --- include/bridges/pthread/thread_bridge.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 include/bridges/pthread/thread_bridge.h (limited to 'include/bridges/pthread') diff --git a/include/bridges/pthread/thread_bridge.h b/include/bridges/pthread/thread_bridge.h new file mode 100644 index 0000000..dc7b75b --- /dev/null +++ b/include/bridges/pthread/thread_bridge.h @@ -0,0 +1,13 @@ +#ifdef USE_THREAD + +#ifndef BRIDGES_PTHREAD_THREAD_BRIDGE_H +#define BRIDGES_PTHREAD_THREAD_BRIDGE_H + +#include +#include + +pthread_t run_job_in_thread(ff_thread_job *job); + +#endif + +#endif \ No newline at end of file -- cgit v1.2.3