Tagged Questions
4
votes
1answer
213 views
Monotonic clock on IRIX
I want to get a monotonic clock on IRIX, like:
clock_gettime(CLOCK_MONOTONIC, &t);
But CLOCK_MONOTONIC doesn't exist on IRIX.
It has CLOCK_SGI_CYCLE, but that (as the names says) cycles too ...
1
vote
3answers
402 views
How do I find the MAC address programatically on IRIX?
How do I find the MAC address of a network card on IRIX? I'd rather not shell out to something that displays it and parse the output.
I'm coding C.
Methods that require root access are acceptable.