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 ?
pselectand probably also your libc, so if you really want a high precision you can use it. One of the differences betweenselectandpselectis that the later offers more precision. Either than this, I actually don't know the answer to your question :\selectreceives astruct timevalwhich 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