OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef SANDBOX_LINUX_SERVICES_ANDROID_X86_64_UCONTEXT_H_ | 5 #ifndef SANDBOX_LINUX_SYSTEM_HEADERS_ANDROID_X86_64_UCONTEXT_H_ |
6 #define SANDBOX_LINUX_SERVICES_ANDROID_X86_64_UCONTEXT_H_ | 6 #define SANDBOX_LINUX_SYSTEM_HEADERS_ANDROID_X86_64_UCONTEXT_H_ |
7 | 7 |
8 // We do something compatible with glibc. Hopefully, at some point Android will | 8 // We do something compatible with glibc. Hopefully, at some point Android will |
9 // provide that for us, and __BIONIC_HAVE_UCONTEXT_T should be defined. | 9 // provide that for us, and __BIONIC_HAVE_UCONTEXT_T should be defined. |
10 // Spec: | 10 // Spec: |
11 // http://refspecs.linuxfoundation.org/LSB_4.1.0/LSB-Core-AMD64/LSB-Core-AMD64/l
ibc-ddefs.html#AEN5668 | 11 // http://refspecs.linuxfoundation.org/LSB_4.1.0/LSB-Core-AMD64/LSB-Core-AMD64/l
ibc-ddefs.html#AEN5668 |
12 | 12 |
13 #if !defined(__BIONIC_HAVE_UCONTEXT_T) | 13 #if !defined(__BIONIC_HAVE_UCONTEXT_T) |
14 #include <asm/sigcontext.h> | 14 #include <asm/sigcontext.h> |
15 | 15 |
16 struct _libc_fpxreg { | 16 struct _libc_fpxreg { |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 stack_t uc_stack; | 78 stack_t uc_stack; |
79 mcontext_t uc_mcontext; | 79 mcontext_t uc_mcontext; |
80 sigset_t uc_sigmask; | 80 sigset_t uc_sigmask; |
81 struct _libc_fpstate __fpregs_mem; | 81 struct _libc_fpstate __fpregs_mem; |
82 } ucontext_t; | 82 } ucontext_t; |
83 | 83 |
84 #else | 84 #else |
85 #include <sys/ucontext.h> | 85 #include <sys/ucontext.h> |
86 #endif // __BIONIC_HAVE_UCONTEXT_T | 86 #endif // __BIONIC_HAVE_UCONTEXT_T |
87 | 87 |
88 #endif // SANDBOX_LINUX_SERVICES_ANDROID_X86_64_UCONTEXT_H_ | 88 #endif // SANDBOX_LINUX_SYSTEM_HEADERS_ANDROID_X86_64_UCONTEXT_H_ |
OLD | NEW |