MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / moveToStack

Method moveToStack

src/jrd/Savepoint.h:219–229  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

217 }
218
219 Savepoint* moveToStack(Savepoint*& target)
220 {
221 // Relink savepoint to the top of the provided savepoint stack.
222 // Return the former "next" pointer to the caller.
223
224 Savepoint* const next = m_next;
225 m_next = target;
226 fb_assert(m_next != this);
227 target = this;
228 return next;
229 }
230
231 VerbAction* createAction(jrd_rel* relation);
232

Callers 3

EXE_receiveFunction · 0.80
execute_looperFunction · 0.80
mergeStacksMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected