diff options
author | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-04-28 11:30:52 +0200 |
---|---|---|
committer | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-04-28 11:38:26 +0200 |
commit | 32d1f47a126567f24be18e7cadf5d2490968c986 (patch) | |
tree | ab6625142666bc947733088becaa0a5d4ec91458 /gdbsupport | |
parent | 56a4f5a10b1e90d60527455b8542ba98fd0f6349 (diff) | |
download | binutils-32d1f47a126567f24be18e7cadf5d2490968c986.zip binutils-32d1f47a126567f24be18e7cadf5d2490968c986.tar.gz binutils-32d1f47a126567f24be18e7cadf5d2490968c986.tar.bz2 |
Fix typo (thead -> thread)
gdb/stubs/ChangeLog:
2020-04-28 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
* ia64vms-stub.c: Fix typo in comment (thead -> thread).
gdb/testsuite/ChangeLog:
2020-04-28 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
* gdb.threads/stop-with-handle.exp: Fix typo in comment
(theads -> threads).
gdbsupport/ChangeLog:
2020-04-28 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
* gdb-sigmask.h: Fix typo (pthead_sigmask -> pthread_sigmask).
Diffstat (limited to 'gdbsupport')
-rw-r--r-- | gdbsupport/ChangeLog | 4 | ||||
-rw-r--r-- | gdbsupport/gdb-sigmask.h | 2 |
2 files changed, 5 insertions, 1 deletions
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 */ |