| 7378 | } |
| 7379 | |
| 7380 | static void* Python_SaveThread(){ |
| 7381 | if(!RedisGearsPy_IsLockAcquired()){ |
| 7382 | return NULL; |
| 7383 | } |
| 7384 | |
| 7385 | return PyEval_SaveThread(); |
| 7386 | } |
| 7387 | |
| 7388 | static void Python_RestorThread(void* s){ |
| 7389 | if(!s){ |
nothing calls this directly
no test coverage detected