This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/H/threads.h
2004-07-22 21:50:53 +00:00

13 lines
342 B
C

typedef struct{
UInt ssize;
UInt tsize;
int (*cancel)(int thread);
} thread_attr;
Int STD_PROTO(Yap_thread_self,(void));
Int STD_PROTO(Yap_thread_create_engine,(thread_attr *));
Int STD_PROTO(Yap_thread_attach_engine,(int));
Int STD_PROTO(Yap_thread_detach_engine,(int));
Int STD_PROTO(Yap_thread_destroy_engine,(int));