summaryrefslogtreecommitdiff
path: root/include/linux/delay.h
AgeCommit message (Collapse)Author
2005-01-04[PATCH] FRV: Make calibrate_delay() optionalDavid Howells
The attached patch makes calibrate_delay() optional. In this architecture, it's a waste of time since we can predict exactly what it's going to come up with just by looking at the CPU's hardware clock registers. Thus far, we haven't seen a board with any clock not dependent on the CPU's clock. Signed-Off-By: David Howells <dhowells@redhat.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2004-09-02[PATCH] Add msleep_interruptible() function to kernel/timer.cMaximilian Attems
Signed-off-by: Maximilian Attems <janitor@sternwelten.at> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2004-08-21[PATCH] add ssleep(), kill scsi_sleep()Jeff Garzik
So, the kernel needs a 'sleep', but that token is far too common, so I chose ssleep(). scsi_sleep() is a manually implemented msleep(), so I remove it. Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
2004-05-18Add msleep function to the kernel core to prevent duplication.Greg Kroah-Hartman
2003-08-02[PATCH] Fix mdelay's use of 'msec' nameBenjamin Herrenschmidt
The mdelay() macro does the wrong thing if you try to use it with an argument expression that contains the (perfectly natural) variable name 'msec'. Fix it to use an internal variable that doesn't clash with normal naming.
2003-02-17Add ndelay() compatibility macro. If the architectureLinus Torvalds
doesn't define ndelay(), fall back on udelay().
2002-02-04Import changesetLinus Torvalds