I want to get a monotonous clock on IRIX, for example:
clock_gettime(CLOCK_MONOTONIC, &t);
But CLOCK_MONOTONIC does not exist on IRIX.
It has CLOCK_SGI_CYCLE, but this (as the names say) alternates too often (about every 90 seconds on my machine, if you're interested).
Are there any other (fairly high values) watches that I can use that are not affected by time changes (ntp or others)?
source share