You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-misc/rss-glx/files/rss-glx-0.9.1-hang.patch

15 lines
299 B

Ensure a signalled process exits even if the GL driver hangs.
https://bugs.gentoo.org/478074
--- a/src/driver.c
+++ b/src/driver.c
@@ -397,6 +397,7 @@
void signalHandler (int sig)
{
signalled = 1;
+ alarm(3); /* Self-destruct if something goes wrong */
}
int main (int argc, char *argv[])