aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/stubs/ChangeLog4
-rw-r--r--gdb/stubs/ia64vms-stub.c2
-rw-r--r--gdb/testsuite/ChangeLog5
-rw-r--r--gdb/testsuite/gdb.threads/stop-with-handle.exp2
-rw-r--r--gdbsupport/ChangeLog4
-rw-r--r--gdbsupport/gdb-sigmask.h2
6 files changed, 16 insertions, 3 deletions
diff --git a/gdb/stubs/ChangeLog b/gdb/stubs/ChangeLog
index 835aed9..a5cfae0 100644
--- a/gdb/stubs/ChangeLog
+++ b/gdb/stubs/ChangeLog
@@ -1,3 +1,7 @@
+2020-04-28 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
+
+ * ia64vms-stub.c: Fix typo in comment (thead -> thread).
+
2019-10-26 Tom de Vries <tdevries@suse.de>
* ia64vms-stub.c: Fix typos in comments.
diff --git a/gdb/stubs/ia64vms-stub.c b/gdb/stubs/ia64vms-stub.c
index 771d4a1..740a61b 100644
--- a/gdb/stubs/ia64vms-stub.c
+++ b/gdb/stubs/ia64vms-stub.c
@@ -776,7 +776,7 @@ set_thread_scheduling (int val)
return blk.dbgext$l_stop_value;
}
-/* Get next thead (after THR). Start with 0. */
+/* Get next thread (after THR). Start with 0. */
static unsigned int
thread_next (unsigned int thr)
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 2d26a5e..5544a17 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2020-04-28 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
+
+ * gdb.threads/stop-with-handle.exp: Fix typo in comment
+ (theads -> threads).
+
2020-04-28 Tom de Vries <tdevries@suse.de>
* gdb.opt/inline-cmds.exp: Set KFAIL PR.
diff --git a/gdb/testsuite/gdb.threads/stop-with-handle.exp b/gdb/testsuite/gdb.threads/stop-with-handle.exp
index 2208536..24610f9 100644
--- a/gdb/testsuite/gdb.threads/stop-with-handle.exp
+++ b/gdb/testsuite/gdb.threads/stop-with-handle.exp
@@ -15,7 +15,7 @@
# This test covers a case where SIGSTOP has been configured to be
# passed to the target with GDB's 'handle' command, and then a
-# multi-threaded inferior encounters an event that causes all theads
+# multi-threaded inferior encounters an event that causes all threads
# to be stopped.
#
# The problem that (used) to exist was that GDB would see the SIGSTOP,
diff --git a/gdbsupport/ChangeLog b/gdbsupport/ChangeLog
index b071049..194811e 100644
--- a/gdbsupport/ChangeLog
+++ b/gdbsupport/ChangeLog
@@ -1,3 +1,7 @@
+2020-04-28 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
+
+ * gdb-sigmask.h: Fix typo (pthead_sigmask -> pthread_sigmask).
+
2020-04-27 Simon Marchi <simon.marchi@polymtl.ca>
* common-defs.h: Include cstdlib.h.
diff --git a/gdbsupport/gdb-sigmask.h b/gdbsupport/gdb-sigmask.h
index cd58c54..91d84db 100644
--- a/gdbsupport/gdb-sigmask.h
+++ b/gdbsupport/gdb-sigmask.h
@@ -36,7 +36,7 @@
system that only had pthread_sigmask, we could still use it with
some extra changes. */
#ifdef HAVE_PTHREAD_SIGMASK
-#error pthead_sigmask available without sigprocmask - please report
+#error pthread_sigmask available without sigprocmask - please report
#endif
#endif /* HAVE_SIGPROCMASK */