diff options
author | Calin Juravle <calin@google.com> | 2014-05-20 16:51:24 +0100 |
---|---|---|
committer | Calin Juravle <calin@google.com> | 2014-05-21 18:15:35 +0100 |
commit | eb454522da53759ef74180b9c623206040b17df0 (patch) | |
tree | 962d3e9672302a7f08ae7015e3ccbd6c106a2903 /libc/include | |
parent | b2b0f7e1ae0a0459b41a7732b84f58d62373e512 (diff) | |
download | bionic-eb454522da53759ef74180b9c623206040b17df0.zip bionic-eb454522da53759ef74180b9c623206040b17df0.tar.gz bionic-eb454522da53759ef74180b9c623206040b17df0.tar.bz2 |
Clean up ucontext.h TODOs.
There's no need to expose gregset_t and fpregset_t when they
are not used in ucontext_t.
Bug: 12828904
Change-Id: Ieda1edf0ab18015f444c4d385fe9c41c4544017f
Diffstat (limited to 'libc/include')
-rw-r--r-- | libc/include/sys/ucontext.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libc/include/sys/ucontext.h b/libc/include/sys/ucontext.h index f86d9f4..20dcdd5 100644 --- a/libc/include/sys/ucontext.h +++ b/libc/include/sys/ucontext.h @@ -60,8 +60,6 @@ enum { typedef int greg_t; typedef greg_t gregset_t[NGREG]; -/* TODO: fpregset_t. */ - #include <asm/sigcontext.h> typedef struct sigcontext mcontext_t; @@ -77,8 +75,6 @@ typedef struct ucontext { #elif defined(__aarch64__) -/* TODO: gregset_t and fpregset_t. */ - #include <asm/sigcontext.h> typedef struct sigcontext mcontext_t; |