mirror of
https://github.com/Fishwaldo/meta-riscv.git
synced 2025-03-15 19:41:42 +00:00
musl: fix inconsistent ucontext_t struct tag for rv32
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
36469c1189
commit
c028c49fda
2 changed files with 35 additions and 0 deletions
|
@ -0,0 +1,34 @@
|
|||
From d6cdbadb028f6b5bba46b2b223519ab372b42b42 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Wed, 16 Mar 2022 10:57:18 -0700
|
||||
Subject: [PATCH] riscv32: fix inconsistent ucontext_t struct tag
|
||||
|
||||
ucontext.h depends on the internal struct tag name for namespacing
|
||||
reasons, and the intent was always for it to be consistent across
|
||||
archs anyway.
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
arch/riscv32/bits/signal.h | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/arch/riscv32/bits/signal.h b/arch/riscv32/bits/signal.h
|
||||
index b006334f..287367db 100644
|
||||
--- a/arch/riscv32/bits/signal.h
|
||||
+++ b/arch/riscv32/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.35.1
|
||||
|
|
@ -18,4 +18,5 @@ SRC_URI:append:riscv32 = "\
|
|||
file://0015-Change-definitions-of-F_GETLK-F_SETLK-F_SETLKW.patch \
|
||||
file://0016-riscv32-Wire-new-syscalls.patch \
|
||||
file://0017-Add-bits-reg.h-for-riscv32.patch \
|
||||
file://0001-riscv32-fix-inconsistent-ucontext_t-struct-tag.patch \
|
||||
"
|
||||
|
|
Loading…
Add table
Reference in a new issue