| 3338 | } |
| 3339 | |
| 3340 | void |
| 3341 | TSContDestroy(TSCont contp) |
| 3342 | { |
| 3343 | sdk_assert(sdk_sanity_check_iocore_structure(contp) == TS_SUCCESS); |
| 3344 | |
| 3345 | INKContInternal *i = reinterpret_cast<INKContInternal *>(contp); |
| 3346 | |
| 3347 | if (i->m_context) { |
| 3348 | reinterpret_cast<PluginThreadContext *>(i->m_context)->release(); |
| 3349 | } |
| 3350 | |
| 3351 | i->destroy(); |
| 3352 | } |
| 3353 | |
| 3354 | void |
| 3355 | TSContDataSet(TSCont contp, void *data) |