| 120 | } |
| 121 | void increaseContext() noexcept { CtxCnt++; } |
| 122 | void decreaseContext() noexcept { |
| 123 | assuming(CtxCnt > 0); |
| 124 | CtxCnt--; |
| 125 | } |
| 126 | uint32_t getContextCount() const noexcept { return CtxCnt; } |
| 127 | bool isFinalized() const noexcept { |
| 128 | return Stat == Status::Uninitialized || Stat == Status::Finalized; |