| 1148 | } |
| 1149 | |
| 1150 | bool RedisGearsPy_IsLockAcquired(){ |
| 1151 | PythonThreadCtx* ptctx = GetPythonThreadCtx(); |
| 1152 | return ptctx->lockCounter > 0; |
| 1153 | } |
| 1154 | |
| 1155 | void RedisGearsPy_Lock(PythonExecutionCtx* pectx){ |
| 1156 | PythonThreadCtx* ptctx = GetPythonThreadCtx(); |
no test coverage detected