| 26 | { |
| 27 | |
| 28 | WrapperLock::WrapperLock(bool exclusiveLock) |
| 29 | { |
| 30 | if (exclusiveLock) { |
| 31 | ThreadSync::wrapperExecutionLockLockExcl(); |
| 32 | } else { |
| 33 | ThreadSync::wrapperExecutionLockLock(); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | WrapperLock::~WrapperLock() |
| 38 | { |
nothing calls this directly
no outgoing calls
no test coverage detected