MCPcopy Create free account
hub / github.com/RichieSams/FiberTaskingLib / EventCallbacks

Class EventCallbacks

include/ftl/callbacks.h:66–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64using FiberDetachedCallback = void (*)(void *context, unsigned fiberIndex, bool isMidTask);
65
66struct EventCallbacks {
67 void *Context = nullptr;
68
69 ThreadCreationCallback OnThreadsCreated = nullptr;
70 FiberCreationCallback OnFibersCreated = nullptr;
71
72 ThreadEventCallback OnWorkerThreadStarted = nullptr;
73 ThreadEventCallback OnWorkerThreadEnded = nullptr;
74
75 FiberAttachedCallback OnFiberAttached = nullptr;
76 FiberDetachedCallback OnFiberDetached = nullptr;
77};
78
79} // End of namespace ftl

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected