glibc-compat.patch 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. From 5266910fed23d6d7f101a878dd8a28d178697ec5 Mon Sep 17 00:00:00 2001
  2. From: jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>
  3. Date: Wed, 28 Jun 2017 09:21:16 +0000
  4. Subject: [PATCH] Use ucontext_t not struct ucontext in linux-unwind.h files.
  5. Current glibc no longer gives the ucontext_t type the tag struct
  6. ucontext, to conform with POSIX namespace rules. This requires
  7. various linux-unwind.h files in libgcc, that were previously using
  8. struct ucontext, to be fixed to use ucontext_t instead. This is
  9. similar to the removal of the struct siginfo tag from siginfo_t some
  10. years ago.
  11. This patch changes those files to use ucontext_t instead. As the
  12. standard name that should be unconditionally safe, so this is not
  13. restricted to architectures supported by glibc, or conditioned on the
  14. glibc version.
  15. Tested compilation together with current glibc with glibc's
  16. build-many-glibcs.py.
  17. * config/aarch64/linux-unwind.h (aarch64_fallback_frame_state),
  18. config/alpha/linux-unwind.h (alpha_fallback_frame_state),
  19. config/bfin/linux-unwind.h (bfin_fallback_frame_state),
  20. config/i386/linux-unwind.h (x86_64_fallback_frame_state,
  21. x86_fallback_frame_state), config/m68k/linux-unwind.h (struct
  22. uw_ucontext), config/nios2/linux-unwind.h (struct nios2_ucontext),
  23. config/pa/linux-unwind.h (pa32_fallback_frame_state),
  24. config/riscv/linux-unwind.h (riscv_fallback_frame_state),
  25. config/sh/linux-unwind.h (sh_fallback_frame_state),
  26. config/tilepro/linux-unwind.h (tile_fallback_frame_state),
  27. config/xtensa/linux-unwind.h (xtensa_fallback_frame_state): Use
  28. ucontext_t instead of struct ucontext.
  29. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@249731 138bc75d-0d04-0410-961f-82ee72b054a4
  30. ---
  31. libgcc/config/aarch64/linux-unwind.h | 2 +-
  32. libgcc/config/alpha/linux-unwind.h | 2 +-
  33. libgcc/config/bfin/linux-unwind.h | 2 +-
  34. libgcc/config/i386/linux-unwind.h | 4 ++--
  35. libgcc/config/m68k/linux-unwind.h | 2 +-
  36. libgcc/config/nios2/linux-unwind.h | 2 +-
  37. libgcc/config/pa/linux-unwind.h | 2 +-
  38. libgcc/config/riscv/linux-unwind.h | 2 +-
  39. libgcc/config/sh/linux-unwind.h | 2 +-
  40. libgcc/config/tilepro/linux-unwind.h | 2 +-
  41. libgcc/config/xtensa/linux-unwind.h | 2 +-
  42. 12 files changed, 27 insertions(+), 12 deletions(-)
  43. diff --git a/libgcc/config/aarch64/linux-unwind.h b/libgcc/config/aarch64/linux-unwind.h
  44. index d5d6980442f..d46d5f53be3 100644
  45. --- a/libgcc/config/aarch64/linux-unwind.h
  46. +++ b/libgcc/config/aarch64/linux-unwind.h
  47. @@ -55,7 +55,7 @@ aarch64_fallback_frame_state (struct _Unwind_Context *context,
  48. struct rt_sigframe
  49. {
  50. siginfo_t info;
  51. - struct ucontext uc;
  52. + ucontext_t uc;
  53. };
  54. struct rt_sigframe *rt_;
  55. diff --git a/libgcc/config/alpha/linux-unwind.h b/libgcc/config/alpha/linux-unwind.h
  56. index a91a5f4fe26..7202516581d 100644
  57. --- a/libgcc/config/alpha/linux-unwind.h
  58. +++ b/libgcc/config/alpha/linux-unwind.h
  59. @@ -51,7 +51,7 @@ alpha_fallback_frame_state (struct _Unwind_Context *context,
  60. {
  61. struct rt_sigframe {
  62. siginfo_t info;
  63. - struct ucontext uc;
  64. + ucontext_t uc;
  65. } *rt_ = context->cfa;
  66. sc = &rt_->uc.uc_mcontext;
  67. }
  68. diff --git a/libgcc/config/bfin/linux-unwind.h b/libgcc/config/bfin/linux-unwind.h
  69. index 9412c7652b8..37e9feb6965 100644
  70. --- a/libgcc/config/bfin/linux-unwind.h
  71. +++ b/libgcc/config/bfin/linux-unwind.h
  72. @@ -52,7 +52,7 @@ bfin_fallback_frame_state (struct _Unwind_Context *context,
  73. void *puc;
  74. char retcode[8];
  75. siginfo_t info;
  76. - struct ucontext uc;
  77. + ucontext_t uc;
  78. } *rt_ = context->cfa;
  79. /* The void * cast is necessary to avoid an aliasing warning.
  80. diff --git a/libgcc/config/i386/linux-unwind.h b/libgcc/config/i386/linux-unwind.h
  81. index b1d5040a687..2009ad72260 100644
  82. --- a/libgcc/config/i386/linux-unwind.h
  83. +++ b/libgcc/config/i386/linux-unwind.h
  84. @@ -58,7 +58,7 @@ x86_64_fallback_frame_state (struct _Unwind_Context *context,
  85. if (*(unsigned char *)(pc+0) == 0x48
  86. && *(unsigned long long *)(pc+1) == RT_SIGRETURN_SYSCALL)
  87. {
  88. - struct ucontext *uc_ = context->cfa;
  89. + ucontext_t *uc_ = context->cfa;
  90. /* The void * cast is necessary to avoid an aliasing warning.
  91. The aliasing warning is correct, but should not be a problem
  92. because it does not alias anything. */
  93. @@ -138,7 +138,7 @@ x86_fallback_frame_state (struct _Unwind_Context *context,
  94. siginfo_t *pinfo;
  95. void *puc;
  96. siginfo_t info;
  97. - struct ucontext uc;
  98. + ucontext_t uc;
  99. } *rt_ = context->cfa;
  100. /* The void * cast is necessary to avoid an aliasing warning.
  101. The aliasing warning is correct, but should not be a problem
  102. diff --git a/libgcc/config/m68k/linux-unwind.h b/libgcc/config/m68k/linux-unwind.h
  103. index 82c7a297a6d..9ea39d454aa 100644
  104. --- a/libgcc/config/m68k/linux-unwind.h
  105. +++ b/libgcc/config/m68k/linux-unwind.h
  106. @@ -33,7 +33,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  107. /* <sys/ucontext.h> is unfortunately broken right now. */
  108. struct uw_ucontext {
  109. unsigned long uc_flags;
  110. - struct ucontext *uc_link;
  111. + ucontext_t *uc_link;
  112. stack_t uc_stack;
  113. mcontext_t uc_mcontext;
  114. unsigned long uc_filler[80];
  115. diff --git a/libgcc/config/nios2/linux-unwind.h b/libgcc/config/nios2/linux-unwind.h
  116. index ae82efd6de6..204359d7b92 100644
  117. --- a/libgcc/config/nios2/linux-unwind.h
  118. +++ b/libgcc/config/nios2/linux-unwind.h
  119. @@ -38,7 +38,7 @@ struct nios2_mcontext {
  120. struct nios2_ucontext {
  121. unsigned long uc_flags;
  122. - struct ucontext *uc_link;
  123. + ucontext_t *uc_link;
  124. stack_t uc_stack;
  125. struct nios2_mcontext uc_mcontext;
  126. sigset_t uc_sigmask; /* mask last for extensibility */
  127. diff --git a/libgcc/config/pa/linux-unwind.h b/libgcc/config/pa/linux-unwind.h
  128. index 580c18dad69..c2c3409bcc1 100644
  129. --- a/libgcc/config/pa/linux-unwind.h
  130. +++ b/libgcc/config/pa/linux-unwind.h
  131. @@ -80,7 +80,7 @@ pa32_fallback_frame_state (struct _Unwind_Context *context,
  132. struct sigcontext *sc;
  133. struct rt_sigframe {
  134. siginfo_t info;
  135. - struct ucontext uc;
  136. + ucontext_t uc;
  137. } *frame;
  138. /* rt_sigreturn trampoline:
  139. diff --git a/libgcc/config/riscv/linux-unwind.h b/libgcc/config/riscv/linux-unwind.h
  140. index a051a2869d4..1c8aeff7ef0 100644
  141. --- a/libgcc/config/riscv/linux-unwind.h
  142. +++ b/libgcc/config/riscv/linux-unwind.h
  143. @@ -42,7 +42,7 @@ riscv_fallback_frame_state (struct _Unwind_Context *context,
  144. struct rt_sigframe
  145. {
  146. siginfo_t info;
  147. - struct ucontext uc;
  148. + ucontext_t uc;
  149. };
  150. struct rt_sigframe *rt_;
  151. diff --git a/libgcc/config/sh/linux-unwind.h b/libgcc/config/sh/linux-unwind.h
  152. index 1038caeb5c3..a8c98220282 100644
  153. --- a/libgcc/config/sh/linux-unwind.h
  154. +++ b/libgcc/config/sh/linux-unwind.h
  155. @@ -82,7 +82,7 @@ sh_fallback_frame_state (struct _Unwind_Context *context,
  156. {
  157. struct rt_sigframe {
  158. siginfo_t info;
  159. - struct ucontext uc;
  160. + ucontext_t uc;
  161. } *rt_ = context->cfa;
  162. /* The void * cast is necessary to avoid an aliasing warning.
  163. The aliasing warning is correct, but should not be a problem
  164. diff --git a/libgcc/config/tilepro/linux-unwind.h b/libgcc/config/tilepro/linux-unwind.h
  165. index a8dc4405715..dba3b410279 100644
  166. --- a/libgcc/config/tilepro/linux-unwind.h
  167. +++ b/libgcc/config/tilepro/linux-unwind.h
  168. @@ -61,7 +61,7 @@ tile_fallback_frame_state (struct _Unwind_Context *context,
  169. struct rt_sigframe {
  170. unsigned char save_area[C_ABI_SAVE_AREA_SIZE];
  171. siginfo_t info;
  172. - struct ucontext uc;
  173. + ucontext_t uc;
  174. } *rt_;
  175. /* Return if this is not a signal handler. */
  176. diff --git a/libgcc/config/xtensa/linux-unwind.h b/libgcc/config/xtensa/linux-unwind.h
  177. index 67c272820d0..2cb9eb1f739 100644
  178. --- a/libgcc/config/xtensa/linux-unwind.h
  179. +++ b/libgcc/config/xtensa/linux-unwind.h
  180. @@ -67,7 +67,7 @@ xtensa_fallback_frame_state (struct _Unwind_Context *context,
  181. struct rt_sigframe {
  182. siginfo_t info;
  183. - struct ucontext uc;
  184. + ucontext_t uc;
  185. } *rt_;
  186. /* movi a2, __NR_rt_sigreturn; syscall */
  187. --
  188. 2.11.0