commit | b2b0f7e1ae0a0459b41a7732b84f58d62373e512 | [log] [tgz] |
---|---|---|
author | Calin Juravle <calin@google.com> | Tue May 20 10:14:48 2014 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue May 20 10:14:49 2014 +0000 |
tree | 369afb8ad4bea226d01bc88fdaedbadea0c39d00 | |
parent | c4794a745c17763729c18f64ae3ccef437a53dcd [diff] | |
parent | 0e85fb6121cf365207ee737314130a526dbe0eac [diff] |
Merge "Add uc_regspace to arm's ucontext_t"
diff --git a/libc/include/sys/ucontext.h b/libc/include/sys/ucontext.h index f150ac7..f86d9f4 100644 --- a/libc/include/sys/ucontext.h +++ b/libc/include/sys/ucontext.h
@@ -71,7 +71,8 @@ stack_t uc_stack; mcontext_t uc_mcontext; sigset_t uc_sigmask; - /* TODO: uc_regspace */ + char __padding[128 - sizeof(sigset_t)]; + unsigned long uc_regspace[128] __attribute__((__aligned__(8))); } ucontext_t; #elif defined(__aarch64__)