mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
vlock: fix ENOPATCH
Thanks, @dtzWill. Signed-off-by: Lluís Batlle i Rossell <viric@viric.name>
This commit is contained in:
parent
da3c0ac19c
commit
1bd3fa6210
1 changed files with 22 additions and 0 deletions
22
pkgs/misc/screensavers/vlock/eintr.patch
Normal file
22
pkgs/misc/screensavers/vlock/eintr.patch
Normal file
|
@ -0,0 +1,22 @@
|
|||
In systemd I have seen this error, using it as a service:
|
||||
|
||||
vlock-start[14567]: vlock-new: could not activate new terminal: Interrupted system call
|
||||
|
||||
I think this should fix that.
|
||||
|
||||
diff --git a/modules/new.c b/modules/new.c
|
||||
index e9b15fb..1f692fd 100644
|
||||
--- a/modules/new.c
|
||||
+++ b/modules/new.c
|
||||
@@ -103,7 +103,10 @@ static char *get_console_name(int n)
|
||||
* file descriptor. */
|
||||
static int activate_console(int consfd, int vtno)
|
||||
{
|
||||
- int c = ioctl(consfd, VT_ACTIVATE, vtno);
|
||||
+ int c;
|
||||
+ do {
|
||||
+ c = ioctl(consfd, VT_ACTIVATE, vtno);
|
||||
+ } while(c != 0 && errno == EINTR);
|
||||
|
||||
return c < 0 ? c : ioctl(consfd, VT_WAITACTIVE, vtno);
|
||||
}
|
Loading…
Reference in a new issue