Is it possible to sleep in granularity of microseconds in linux kernel ?
From what i know, there is msleep()
which can sleep in milliseconds
and there is udelay()
which busy waits for time in microsecond
granularity.
But I need to sleep ( not busy wait ) for granularity of microseconds ...
Is there a way to code a new API in linux kernel to allow this ?