Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a application in which i have to sleep for a very short time ( in order of few micro seconds ). Fortunately my linux kernel 2.8.* supports high res timers.

I have 2 options to sleep now

1) nanosleep 2) select() with a timeout.

I choose to use select() as it is quite portable. Does select() use the normal kernel timers ( jiffies ) or it uses the hi res timers ?

Can this provide sleep functionality in order of microseconds ?

share|improve this question
Linux 2.8 ? o.0 – cnicutar Feb 20 at 22:25
temme abt it. One of the perks of working in a huge firm :P – KodeWarrior Feb 20 at 22:29
No, seriously, wha kernel are you using ? – cnicutar Feb 20 at 23:47
Sorry. mis-interpreted your comment. Kernel version 2.6.18-128.1.6.el5 – KodeWarrior Feb 21 at 19:58
I think that version of the kernel already supports pselect and probably also your libc, so if you really want a high precision you can use it. One of the differences between select and pselectis that the later offers more precision. Either than this, I actually don't know the answer to your question :\ select receives a struct timeval which has a component for microseconds, which leads me to believe that if your system supports it can offer microsecond precision. – Fred Feb 23 at 19:49

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.