mailing list of musl libc
 help / color / mirror / code / Atom feed
* [musl] [PATCH v2] riscv64: correct struct __ucontext name
@ 2020-12-05 18:10 Drew DeVault
  2020-12-06  8:51 ` Szabolcs Nagy
  0 siblings, 1 reply; 8+ messages in thread
From: Drew DeVault @ 2020-12-05 18:10 UTC (permalink / raw)
  To: musl; +Cc: Drew DeVault


This makes it consistent with other architectures and fixes some issues
with downstream software.
---
v1 missed a spot. Please Cc me on replies.

 arch/riscv64/bits/signal.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/riscv64/bits/signal.h b/arch/riscv64/bits/signal.h
index b006334f..287367db 100644
--- a/arch/riscv64/bits/signal.h
+++ b/arch/riscv64/bits/signal.h
@@ -60,10 +60,10 @@ struct sigaltstack {
 	size_t ss_size;
 };
 
-typedef struct ucontext_t
+typedef struct __ucontext
 {
 	unsigned long uc_flags;
-	struct ucontext_t *uc_link;
+	struct __ucontext *uc_link;
 	stack_t uc_stack;
 	sigset_t uc_sigmask;
 	mcontext_t uc_mcontext;
-- 
2.29.2


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2020-12-06 17:32 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-05 18:10 [musl] [PATCH v2] riscv64: correct struct __ucontext name Drew DeVault
2020-12-06  8:51 ` Szabolcs Nagy
2020-12-06 12:49   ` Drew DeVault
2020-12-06 16:55     ` Ariadne Conill
2020-12-06 17:06       ` Rich Felker
2020-12-06 17:10         ` Ariadne Conill
2020-12-06 17:19           ` Rich Felker
2020-12-06 17:32             ` Szabolcs Nagy

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).