diff options
author | Dmitry Chestnykh <dm.chestnykh@gmail.com> | 2024-05-18 17:21:33 +0300 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-05-18 16:56:18 +0200 |
commit | 4cab29f60ecf75b1ac8728b44ce2a8e974872ec0 (patch) | |
tree | a181d912da6b5d422d8658478df8262736eba4ca /libc/sysdeps | |
parent | 1b9e6f067da843a11cbb72b8a2ff6f233b0ecdf4 (diff) |
riscv32: Fix `struct ucontext` definition.
The correct typedef is `struct ucontext` -> `ucontext_t`,
not `struct ucontext_t` -> `ucontext_t` like for other architectures.
Signed-off-by: Dmitry Chestnykh <dm.chestnykh@gmail.com>
Diffstat (limited to 'libc/sysdeps')
-rw-r--r-- | libc/sysdeps/linux/riscv32/sys/ucontext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/riscv32/sys/ucontext.h b/libc/sysdeps/linux/riscv32/sys/ucontext.h index 2893ff359..308ccb8c2 100644 --- a/libc/sysdeps/linux/riscv32/sys/ucontext.h +++ b/libc/sysdeps/linux/riscv32/sys/ucontext.h @@ -83,10 +83,10 @@ typedef struct mcontext_t } mcontext_t; /* Userlevel context. */ -typedef struct ucontext_t +typedef struct ucontext { unsigned long int __uc_flags; - struct ucontext_t *uc_link; + struct ucontext *uc_link; stack_t uc_stack; sigset_t uc_sigmask; /* There's some padding here to allow sigset_t to be expanded in the |