diff options
author | Doug Evans <xdje42@gmail.com> | 2014-10-18 21:24:47 -0700 |
---|---|---|
committer | Doug Evans <xdje42@gmail.com> | 2014-10-18 21:24:47 -0700 |
commit | fc9b8e475d13b13e6cac1441aef649ce45929111 (patch) | |
tree | 2c1b93988f5d94d43a6965409a65a965d2c6153c /gdb/linux-nat.c | |
parent | 5bb926bae5e049e61d409fc5a0985082c9997eab (diff) | |
download | gdb-fc9b8e475d13b13e6cac1441aef649ce45929111.zip gdb-fc9b8e475d13b13e6cac1441aef649ce45929111.tar.gz gdb-fc9b8e475d13b13e6cac1441aef649ce45929111.tar.bz2 |
linux-nat.c (linux_nat_wait_1): Make local prev_mask non-static.
gdb/ChangeLog:
linux-nat.c (linux_nat_wait_1): Make local prev_mask non-static.
Diffstat (limited to 'gdb/linux-nat.c')
-rw-r--r-- | gdb/linux-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index 396c30c..21797c1 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -3011,7 +3011,7 @@ linux_nat_wait_1 (struct target_ops *ops, ptid_t ptid, struct target_waitstatus *ourstatus, int target_options) { - static sigset_t prev_mask; + sigset_t prev_mask; enum resume_kind last_resume_kind; struct lwp_info *lp; int status; |