| 207 | } |
| 208 | |
| 209 | void 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 | |
| 217 | TraNumber getTraNum(const void* ptr) |
| 218 | { |
no outgoing calls
no test coverage detected