File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 4
4
#ifndef __UNIX_CONTEXT_H__
5
5
#define __UNIX_CONTEXT_H__
6
6
7
- #include < sys/ ucontext.h>
7
+ #include < ucontext.h>
8
8
9
9
// Convert Unix native context to PAL_LIMITED_CONTEXT
10
10
void NativeContextToPalContext (const void * context, PAL_LIMITED_CONTEXT* palContext);
Original file line number Diff line number Diff line change @@ -615,7 +615,7 @@ endif()
615
615
616
616
check_c_source_compiles("
617
617
#include <libunwind.h>
618
- #include <sys/ ucontext.h>
618
+ #include <ucontext.h>
619
619
int main(int argc, char **argv)
620
620
{
621
621
unw_context_t libUnwindContext;
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ extern "C"
33
33
/* A type to wrap the native context type, which is ucontext_t on some
34
34
* platforms and another type elsewhere. */
35
35
#if HAVE_UCONTEXT_T
36
- #include < sys/ ucontext.h>
36
+ #include < ucontext.h>
37
37
38
38
typedef ucontext_t native_context_t ;
39
39
#else // HAVE_UCONTEXT_T
You can’t perform that action at this time.
0 commit comments