ports/devel/directfb/files/patch-lib-fusion-lock.c
Dmitry Marakasov 19a137e719 - Update to 1.4.17
- Unbreak
- Switch to options helpers

PR:		185885
Submitted by:	hardy.schumacher@gmx.de
Approved by:	maintainer timeout (anatoly.borodin@gmail.com, 2 years)
2016-06-17 15:20:35 +00:00

11 lines
427 B
C

--- lib/fusion/lock.c.orig 2012-05-23 13:43:12 UTC
+++ lib/fusion/lock.c
@@ -646,7 +646,7 @@ fusion_skirmish_wait( FusionSkirmish *sk
/* Install a (fake) signal handler for SIGRESTART. */
act.sa_handler = restart_handler;
- act.sa_flags = SA_RESETHAND | SA_RESTART | SA_NOMASK;
+ act.sa_flags = SA_RESETHAND | SA_RESTART | SA_NODEFER;
sigaction( SIGRESTART, &act, &oldact );