943-Use-ucontext_t-not-struct-ucontext-in-linux-unwind.h.patch 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. From b7e85069238c40eae54d0ca03ab6d5470d1815f9 Mon Sep 17 00:00:00 2001
  2. From: jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>
  3. Date: Tue, 4 Jul 2017 10:25:10 +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/sh/linux-unwind.h (sh_fallback_frame_state),
  25. config/tilepro/linux-unwind.h (tile_fallback_frame_state),
  26. config/xtensa/linux-unwind.h (xtensa_fallback_frame_state): Use
  27. ucontext_t instead of struct ucontext.
  28. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-5-branch@249958 138bc75d-0d04-0410-961f-82ee72b054a4
  29. [Romain backport from gcc-5-branch]
  30. Signed-off-by: Romain Naour <romain.naour@gmail.com>
  31. ---
  32. libgcc/config/aarch64/linux-unwind.h | 2 +-
  33. libgcc/config/alpha/linux-unwind.h | 2 +-
  34. libgcc/config/bfin/linux-unwind.h | 2 +-
  35. libgcc/config/i386/linux-unwind.h | 4 ++--
  36. libgcc/config/m68k/linux-unwind.h | 2 +-
  37. libgcc/config/nios2/linux-unwind.h | 2 +-
  38. libgcc/config/pa/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. 10 files changed, 11 insertions(+), 11 deletions(-)
  43. diff --git a/libgcc/config/aarch64/linux-unwind.h b/libgcc/config/aarch64/linux-unwind.h
  44. index 6b5b3cd..d13dc34 100644
  45. --- a/libgcc/config/aarch64/linux-unwind.h
  46. +++ b/libgcc/config/aarch64/linux-unwind.h
  47. @@ -52,7 +52,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 b5bfd1c..166d3d2 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 dc58f0a..8b94568 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 7986928..a9d621c 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 1ba2a0c4..d67767e 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 ba4bd80..8978868 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 4a3cfff..d2ac437 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/sh/linux-unwind.h b/libgcc/config/sh/linux-unwind.h
  140. index 4875706..671bde7 100644
  141. --- a/libgcc/config/sh/linux-unwind.h
  142. +++ b/libgcc/config/sh/linux-unwind.h
  143. @@ -180,7 +180,7 @@ sh_fallback_frame_state (struct _Unwind_Context *context,
  144. {
  145. struct rt_sigframe {
  146. siginfo_t info;
  147. - struct ucontext uc;
  148. + ucontext_t uc;
  149. } *rt_ = context->cfa;
  150. /* The void * cast is necessary to avoid an aliasing warning.
  151. The aliasing warning is correct, but should not be a problem
  152. diff --git a/libgcc/config/tilepro/linux-unwind.h b/libgcc/config/tilepro/linux-unwind.h
  153. index 27481cf..c24d58c 100644
  154. --- a/libgcc/config/tilepro/linux-unwind.h
  155. +++ b/libgcc/config/tilepro/linux-unwind.h
  156. @@ -61,7 +61,7 @@ tile_fallback_frame_state (struct _Unwind_Context *context,
  157. struct rt_sigframe {
  158. unsigned char save_area[C_ABI_SAVE_AREA_SIZE];
  159. siginfo_t info;
  160. - struct ucontext uc;
  161. + ucontext_t uc;
  162. } *rt_;
  163. /* Return if this is not a signal handler. */
  164. diff --git a/libgcc/config/xtensa/linux-unwind.h b/libgcc/config/xtensa/linux-unwind.h
  165. index 6832d0b..cb15b4c 100644
  166. --- a/libgcc/config/xtensa/linux-unwind.h
  167. +++ b/libgcc/config/xtensa/linux-unwind.h
  168. @@ -63,7 +63,7 @@ xtensa_fallback_frame_state (struct _Unwind_Context *context,
  169. struct rt_sigframe {
  170. siginfo_t info;
  171. - struct ucontext uc;
  172. + ucontext_t uc;
  173. } *rt_;
  174. /* movi a2, __NR_rt_sigreturn; syscall */
  175. --
  176. 2.9.5