diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2019-06-16 17:34:22 +0100 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2019-06-16 19:25:02 +0100 |
commit | bf5142e7fef4e2eca5d98cf805dbadc737118c1e (patch) | |
tree | c71972fb745a271b6bc33654be83521c6f47e66b /gdb/ChangeLog | |
parent | c4973306879b6079bdfc997474a2cbbd89f49bd2 (diff) | |
download | binutils-bf5142e7fef4e2eca5d98cf805dbadc737118c1e.zip binutils-bf5142e7fef4e2eca5d98cf805dbadc737118c1e.tar.gz binutils-bf5142e7fef4e2eca5d98cf805dbadc737118c1e.tar.bz2 |
gdb: Remove unused signal mask
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.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ef62a4e..cf7a1ab 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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 |