Blame SOURCES/gdb-6.6-buildid-locate-rpm-librpm-workaround.patch

132741
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
132741
From: Fedora GDB patches <invalid@email.com>
132741
Date: Fri, 27 Oct 2017 21:07:50 +0200
132741
Subject: gdb-6.6-buildid-locate-rpm-librpm-workaround.patch
132741
132741
;; Workaround librpm BZ 643031 due to its unexpected exit() calls (BZ 642879).
132741
;;=push+jan
132741
132741
diff --git a/gdb/build-id.c b/gdb/build-id.c
132741
--- a/gdb/build-id.c
132741
+++ b/gdb/build-id.c
132741
@@ -708,6 +708,19 @@ build_id_to_filename (const struct bfd_build_id *build_id, char **link_return)
132741
 #include <dlfcn.h>
132741
 #endif
132741
 
132741
+/* Workarodun https://bugzilla.redhat.com/show_bug.cgi?id=643031
132741
+   librpm must not exit() an application on SIGINT
132741
+
132741
+   Enable or disable a signal handler.  SIGNUM: signal to enable (or disable
132741
+   if negative).  HANDLER: sa_sigaction handler (or NULL to use
132741
+   rpmsqHandler()).  Returns: no. of refs, -1 on error.  */
132741
+extern int rpmsqEnable (int signum, /* rpmsqAction_t handler */ void *handler);
132741
+int
132741
+rpmsqEnable (int signum, /* rpmsqAction_t handler */ void *handler)
132741
+{
132741
+  return 0;
132741
+}
132741
+
132741
 /* This MISSING_RPM_HASH tracker is used to collect all the missing rpm files
132741
    and avoid their duplicities during a single inferior run.  */
132741
 
132741
diff --git a/gdb/proc-service.list b/gdb/proc-service.list
132741
--- a/gdb/proc-service.list
132741
+++ b/gdb/proc-service.list
132741
@@ -37,4 +37,7 @@
132741
   ps_pstop;
132741
   ps_ptread;
132741
   ps_ptwrite;
132741
+
132741
+  /* gdb-6.6-buildid-locate-rpm.patch */
132741
+  rpmsqEnable;
132741
 };