mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
[PATCH] kernel/timer: fix msleep_interruptible() comment
The comment for msleep_interruptible() is wrong, as it will ignore wait-queue events, but will wake up early for signals. Signed-off-by: Nishanth Aravamudan <nacc@us.ibm.com> Signed-off-by: Domen Puncer <domen@coderock.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
b20f3ae5f0
commit
96ec3efdcb
1 changed files with 1 additions and 1 deletions
|
@ -1597,7 +1597,7 @@ void msleep(unsigned int msecs)
|
||||||
EXPORT_SYMBOL(msleep);
|
EXPORT_SYMBOL(msleep);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* msleep_interruptible - sleep waiting for waitqueue interruptions
|
* msleep_interruptible - sleep waiting for signals
|
||||||
* @msecs: Time in milliseconds to sleep for
|
* @msecs: Time in milliseconds to sleep for
|
||||||
*/
|
*/
|
||||||
unsigned long msleep_interruptible(unsigned int msecs)
|
unsigned long msleep_interruptible(unsigned int msecs)
|
||||||
|
|
Loading…
Reference in a new issue