Not that I’m aware of; I have the equivalence of your chrono code wrapped in an ofGetUnixTimeMillis() I’m moving around as needed! (I guess it would be a good additions to ofUtils but seeing the platform-specific #ifdef’s in the time-related functions I cannot confirm it works as expected on Windows (it does work on Linux). i assume chrono is cross-plaftorm, but maybe not the same resolution?
Extra information here in case anyone needs it, it seems the the unix epoch time on macOS (and most linux servers) are periodically updated with an NTP server (the interval between checks is adjustable on linux at least).
Every time it does this the time can shift a few seconds so it should not be used to synchronise, say, the start of a show, which is what I’m doing.
I should be better off using system time (which I assume doesn’t get updated using NTP) but as a back up I’ve bought some GPS units from Adafruit and written an Arduino sketch that can send my app the GPS time which should be very accurate across systems.