YAP 7.1.0
threads.h
1
2#ifndef THREADS_H
3
4#define THREADS_H 1
5
6#ifdef THREADS
7
8Int Yap_thread_self(void);
9int Yap_get_thread_ref_count(int);
10void Yap_set_thread_ref_count(int,int);
11CELL Yap_thread_create_engine(YAP_thread_attr *);
12Int Yap_thread_attach_engine(int);
13Int Yap_thread_detach_engine(int);
14Int Yap_thread_destroy_engine(int);
15
16#endif
17
18#endif