-
Notifications
You must be signed in to change notification settings - Fork 56
MTY_ThreadFunc
chrisd1100 edited this page Aug 25, 2022
·
1 revision
Function that is executed on a thread.
typedef void *(*MTY_ThreadFunc)(
void * opaque
);
opaque
(void *
)
Pointer set via MTY_ThreadCreate
or MTY_ThreadDetach
.
void *
An opaque pointer that gets returned by MTY_ThreadDestroy
if the thread has not been run as detached.