| 272 | { |
| 273 | public: |
| 274 | AutoGCUnblocking() : mUnlocked( gc_try_unblocking() ) { } |
| 275 | ~AutoGCUnblocking() { Close(); } |
| 276 | void Close() { if (mUnlocked) gc_enter_blocking(); mUnlocked = false; } |
| 277 |
nothing calls this directly
no test coverage detected