diff options
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 */ |