summaryrefslogtreecommitdiff
path: root/include/bridges/pthread/thread_bridge.h
blob: dc7b75bbbeca976a6ce28df3e5840040a1ee8152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifdef USE_THREAD

#ifndef BRIDGES_PTHREAD_THREAD_BRIDGE_H
#define BRIDGES_PTHREAD_THREAD_BRIDGE_H

#include <pthread.h>
#include <tinyff/thread/thread.h>

pthread_t run_job_in_thread(ff_thread_job *job);

#endif

#endif