| 513 | { |
| 514 | public: |
| 515 | static void subscribe(ThreadExitListener* listener) |
| 516 | { |
| 517 | auto& tlsInst = instance(); |
| 518 | listener->next = tlsInst.tail; |
| 519 | tlsInst.tail = listener; |
| 520 | } |
| 521 | |
| 522 | static void unsubscribe(ThreadExitListener* listener) |
| 523 | { |
nothing calls this directly
no outgoing calls
no test coverage detected