| 183 | } |
| 184 | |
| 185 | void writeNT(header_page* page, TraNumber number) |
| 186 | { |
| 187 | page->hdr_next_transaction = (ULONG) (number & MAX_ULONG); |
| 188 | const SLONG high_word = number >> BITS_PER_LONG; |
| 189 | fb_assert(high_word <= MAX_USHORT); |
| 190 | page->hdr_tra_high[NEXT_INDEX] = (USHORT) high_word; |
| 191 | } |
| 192 | |
| 193 | void writeOIT(header_page* page, TraNumber number) |
| 194 | { |
no outgoing calls
no test coverage detected