commit | 61d435c29af19760878af4ac4314b030f5930fd4 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Mon Apr 03 15:23:31 2023 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Apr 03 15:23:31 2023 +0000 |
tree | be9a2e203893ad83247c04a232c323d0cb1b5b85 | |
parent | e744d817877d60d0b86c5c0e6168faf19d8c7a3f [diff] | |
parent | 53c90ebfdd96f4c29afafc5804a5fd2f4135ba89 [diff] |
Merge "riscv64: typedef struct ucontext {...} ucontext_t."
diff --git a/libc/include/sys/ucontext.h b/libc/include/sys/ucontext.h index cefe177..bb6443b 100644 --- a/libc/include/sys/ucontext.h +++ b/libc/include/sys/ucontext.h
@@ -366,9 +366,9 @@ /* This matches the kernel <asm/ucontext.h> but using mcontext_t. */ -typedef struct ucontext_t { +typedef struct ucontext { unsigned long uc_flags; - struct ucontext_t* uc_link; + struct ucontext* uc_link; stack_t uc_stack; union { sigset_t uc_sigmask;