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