| 64 | using FiberDetachedCallback = void (*)(void *context, unsigned fiberIndex, bool isMidTask); |
| 65 | |
| 66 | struct 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 |
nothing calls this directly
no outgoing calls
no test coverage detected