Xinqi Bao's Git

Refactor main()
authorLaslo Hunhold <[email protected]>
Sun, 13 Aug 2017 21:21:23 +0000 (23:21 +0200)
committerAaron Marcher <[email protected]>
Sun, 13 Aug 2017 21:45:16 +0000 (23:45 +0200)
We remove the hack with the sleep and global "delay"-variable and use a
monotonic clock to derive the desired monotonic properties of the tool.
Inside each function that demands a personal delay we can then just do a
nanosleep() and be done with it.
It's a shame that timespec is so ugly to work with, but there's really
no way to make it more beautiful. However, at this cost though we
finally can set the interval times in milliseconds and not only just
seconds.

We remove setlocale(), because nothing good ever came out of this
function.

Besides that we have some more code refactoring, especially in the
argument loop which saves us a bit of complexity.


No differences found