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

Function writeOIT

src/jrd/ods.cpp:193–199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

191}
192
193void writeOIT(header_page* page, TraNumber number)
194{
195 page->hdr_oldest_transaction = (ULONG) (number & MAX_ULONG);
196 const SLONG high_word = number >> BITS_PER_LONG;
197 fb_assert(high_word <= MAX_USHORT);
198 page->hdr_tra_high[OIT_INDEX] = (USHORT) high_word;
199}
200
201void writeOAT(header_page* page, TraNumber number)
202{

Callers 4

TRA_header_writeFunction · 0.85
TRA_update_countersFunction · 0.85
TRA_sweepFunction · 0.85
bump_transaction_idFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected