Source

Branch

1/ @HerrUppoHoppa

@NOTimothyLottes

Curious why you memory map the 32 bit counter to the file. Also why does it get half the file as opposed to just the end of the mapped region?

2/ @NOTimothyLottes

@HerrUppoHoppa

It’s pow2 message lines so fixing wrap is AND(cnt,lines-1). Counter after that and needs to take a page minimum. So yes I could make the size slightly smaller, but just lazy. Counter in file because then multiple runs accumulate in the file for comparison.

3/ @HerrUppoHoppa

@NOTimothyLottes

Ah I see, interesting solution!