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

Function writeOST

src/jrd/ods.cpp:209–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

207}
208
209void writeOST(header_page* page, TraNumber number)
210{
211 page->hdr_oldest_snapshot = (ULONG) (number & MAX_ULONG);
212 const SLONG high_word = number >> BITS_PER_LONG;
213 fb_assert(high_word <= MAX_USHORT);
214 page->hdr_tra_high[OST_INDEX] = (USHORT) high_word;
215}
216
217TraNumber getTraNum(const void* ptr)
218{

Callers 3

TRA_header_writeFunction · 0.85
TRA_update_countersFunction · 0.85
bump_transaction_idFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected