python/hypothesis: update to 6.121.0
[oi-userland.git] / components / library / glib / patches / 27-signal-handler-reset.patch
blob6f9702674349d8001ba860659561e3b8f9847ab8
1 --- glib-2.82.0/glib/tests/mapping.c.orig
2 +++ glib-2.82.0/glib/tests/mapping.c
3 @@ -39,6 +39,10 @@
4 static void
5 handle_usr1 (int signum)
7 + /* On illumos the signal disposition is reset to SIG_DFL so we need to set
8 + * signal handler again ASAP. */
9 + signal (SIGUSR1, handle_usr1);
11 stop = TRUE;