]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb: Remove unused signal mask
authorAndrew Burgess <andrew.burgess@embecosm.com>
Sun, 16 Jun 2019 16:34:22 +0000 (17:34 +0100)
committerAndrew Burgess <andrew.burgess@embecosm.com>
Sun, 16 Jun 2019 18:25:02 +0000 (19:25 +0100)
In the following commit:

    commit 7feb7d068ae65557ede03c36468ebac61b0939ca
    Date:   Mon May 11 12:08:03 2009 +0000

The last useful uses of normal_mask in linux-nat.c were removed, since
then this variable has sat around being initialised, but never used.
There should be no user visible changes after this commit.

gdb/ChangeLog:

* linux-nat.c (normal_mask): Delete.
(_initialize_linux_nat): Don't initialise normal_mask.

gdb/ChangeLog
gdb/linux-nat.c

index ef62a4e62954928277bdc4af55a214a824d20ba5..cf7a1aba4e9c85c81fb69afdffc7a7de62e1e9c2 100644 (file)
@@ -1,3 +1,8 @@
+2019-06-16  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+       * linux-nat.c (normal_mask): Delete.
+       (_initialize_linux_nat): Don't initialise normal_mask.
+
 2019-06-16  Simon Marchi  <simon.marchi@polymtl.ca>
 
        PR gdb/24445
index 65165a2d46bdb1f99657aeb70383a5969fb1347f..4b9eab31960376604f5b8cb4cea038b2582f89e3 100644 (file)
@@ -748,9 +748,6 @@ lwp_list_remove (struct lwp_info *lp)
 
 \f
 
-/* Original signal mask.  */
-static sigset_t normal_mask;
-
 /* Signal mask for use with sigsuspend in linux_nat_wait, initialized in
    _initialize_linux_nat.  */
 static sigset_t suspend_mask;
@@ -4684,9 +4681,6 @@ Enables printf debugging output."),
                           NULL,
                           &setdebuglist, &showdebuglist);
 
-  /* Save this mask as the default.  */
-  sigprocmask (SIG_SETMASK, NULL, &normal_mask);
-
   /* Install a SIGCHLD handler.  */
   sigchld_action.sa_handler = sigchld_handler;
   sigemptyset (&sigchld_action.sa_mask);