SP can't be used anymore
| 3157 | |
| 3158 | // SP can't be used anymore |
| 3159 | static void close_sp_int(SP sp, int freesp) |
| 3160 | { |
| 3161 | if (!sp) return; |
| 3162 | reset_sp(sp); |
| 3163 | if (sp->lua) lua_close(sp->lua); |
| 3164 | comdb2ma mspace = sp->mspace; |
| 3165 | free_spversion(sp); |
| 3166 | comdb2ma_destroy(mspace); |
| 3167 | free(sp); |
| 3168 | } |
| 3169 | |
| 3170 | static void free_dbthread_type(dbthread_type *thd) |
| 3171 | { |
no test coverage detected