I am porting some vxWorks code to Linux.
I looked at this answer and it recommends CLOCK_MONOTONIC. Is that a suitable replacement for the following define:
#define GetTickCount() ((1000.0 * (double)tickGet())/((double)sysClkRateGet())))
?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
GetTickCount is a windows API described thus:
Yes, CLOCK_MONOTONIC is the correct POSIX clock to use. Here is untested code for you: