mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
riscv64: 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.
This commit is contained in:
parent
50c7935cd2
commit
56f0631d95
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue