Release the key tracking table. */
| 41 | |
| 42 | /* Release the key tracking table. */ |
| 43 | void lazyFreeTrackingTable(void *args[]) { |
| 44 | rax *rt = args[0]; |
| 45 | size_t len = rt->numele; |
| 46 | freeTrackingRadixTree(rt); |
| 47 | atomicDecr(lazyfree_objects,len); |
| 48 | atomicIncr(lazyfreed_objects,len); |
| 49 | } |
| 50 | |
| 51 | void lazyFreeLuaScripts(void *args[]) { |
| 52 | dict *lua_scripts = args[0]; |
nothing calls this directly
no test coverage detected