I'm running a Xenomai real time thread that sometimes needs to call gettimeofday(), in order to find out what the current time is according to ptpd.

However, doing that appears to be unsafe: in particular, it occasionally puts the Xenomai thread and the Linux kernel into a "livelock" situation, causing gettimeofday() to spin the CPU and never return, as described here.

My question is, is there a safe way to get gettimeofday()'s information from a Xenomai real time thread? I'm considering adding my own version of gettimeofday() to my Linux kernel (my version would fail if read_seqretry() returns true, unlike the regular version which will loop forever when that happens). However, I'd just as soon not start customizing the Linux kernel if there is a better way to do it.

link|improve this question

FWIW, Gilles from the Xenomai-help mailing list says that Xenomai 2.6 will have a CLOCK_HOSTRT clock feature that will satisfy this need. For earlier versions, one work-around is to add an ioctl to a custom driver that returns the Linux real-time-clock without trying to loop if contention is detected. – Jeremy Friesner Jul 7 '11 at 16:40
1  
can you put that as a detailed answer? – Anisha Kaul Apr 5 at 8:56
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.