Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 65304
b: refs/heads/master
c: 70cb979
h: refs/heads/master
v: v3
  • Loading branch information
Linus Torvalds committed Oct 7, 2007
1 parent eaa951f commit d9e0fcf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fc8b28a65d81a6fdf58ef81ce5b8ac7a35304e68
refs/heads/master: 70cb97935b8859f27296772885104b599f560576
4 changes: 2 additions & 2 deletions trunk/drivers/char/vt_ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1032,7 +1032,7 @@ static DECLARE_WAIT_QUEUE_HEAD(vt_activate_queue);

/*
* Sleeps until a vt is activated, or the task is interrupted. Returns
* 0 if activation, -EINTR if interrupted.
* 0 if activation, -EINTR if interrupted by a signal handler.
*/
int vt_waitactive(int vt)
{
Expand All @@ -1057,7 +1057,7 @@ int vt_waitactive(int vt)
break;
}
release_console_sem();
retval = -EINTR;
retval = -ERESTARTNOHAND;
if (signal_pending(current))
break;
schedule();
Expand Down

0 comments on commit d9e0fcf

Please sign in to comment.