| 191 | } |
| 192 | |
| 193 | void 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 | |
| 201 | void writeOAT(header_page* page, TraNumber number) |
| 202 | { |
no outgoing calls
no test coverage detected