On Thu, Dec 22, 2022 at 10:49:06PM -0500, Paul Tagliamonte wrote:
> Index: include/tib.h
> ===================================================================
> RCS file: /cvs/src/include/tib.h,v
> retrieving revision 1.8
> diff -u -p -r1.8 tib.h
> --- include/tib.h 14 Jul 2020 16:48:13 -0000 1.8
> +++ include/tib.h 22 Dec 2022 21:14:06 -0000
> @@ -54,7 +54,7 @@
> * Short-hand for TCB_TO_TIB(TCB_GET())
> *
> * TIB_EXTRA_ALIGN
> - * On TLS varaint 2 archs, what alignment is sufficient
> + * On TLS variant 2 archs, what alignment is sufficient
> * for the extra space that will be used for struct pthread?
> *
> * The following functions are provided by either ld.so (dynamic) or
> @@ -123,7 +123,7 @@
> *
> * [pthread structure]
> * TIB {
> - * ...cancelation and other int-sized info...
> + * ...cancellation and other int-sized info...
> * int errno
> * void *locale
> * TCB (- TCB_OFFSET) {
> @@ -169,7 +169,7 @@ struct tib {
> * struct pthread *thread
> * void *locale
> * int errno
> - * ...cancelation and other int-sized info...
> + * ...cancellation and other int-sized info...
> * }
> * [pthread structure]
> */
i took the first hunk of this diff, but did not commit the
cancelation->cancellation part. i know that US english prefers single
'l' (canceling/canceled). i'm not 100% sure about whether this applies
to "cancellation" but decided the gain was not worth it. the intent is
clear enough.
jmc