-
Notifications
You must be signed in to change notification settings - Fork 55
MTY_ThreadDetach
chrisd1100 edited this page Aug 25, 2022
·
1 revision
Asynchronously run a function and forgo the ability to query its result.
void MTY_ThreadDetach(
MTY_ThreadFunc func,
void * opaque
);
func
(MTY_ThreadFunc
)
Function that executes on its own thread.
opaque
(void *
)
Passed to func
when it is called.