MCPcopy Create free account
hub / github.com/Meituan-Dianping/SQLAdvisor / link_changed

Function link_changed

mysys/mf_keycache.c:978–986  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

976*/
977
978static inline void link_changed(BLOCK_LINK *block, BLOCK_LINK **phead)
979{
980 DBUG_ASSERT(!block->next_changed);
981 DBUG_ASSERT(!block->prev_changed);
982 block->prev_changed= phead;
983 if ((block->next_changed= *phead))
984 (*phead)->prev_changed= &block->next_changed;
985 *phead= block;
986}
987
988
989/*

Callers 3

link_to_file_listFunction · 0.85
link_to_changed_listFunction · 0.85
flush_key_blocks_intFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected