| 456 | } |
| 457 | |
| 458 | TSReturnCode |
| 459 | sdk_sanity_check_continuation(TSCont cont) |
| 460 | { |
| 461 | if ((cont == nullptr) || (reinterpret_cast<INKContInternal *>(cont)->m_free_magic == INKCONT_INTERN_MAGIC_DEAD)) { |
| 462 | return TS_ERROR; |
| 463 | } |
| 464 | |
| 465 | return TS_SUCCESS; |
| 466 | } |
| 467 | |
| 468 | TSReturnCode |
| 469 | sdk_sanity_check_fetch_sm(TSFetchSM fetch_sm) |
no outgoing calls
no test coverage detected