search for: mcontext_t

Displaying 2 results from an estimated 2 matches for "mcontext_t".

Did you mean: ucontext_t
2014 Jul 25
0
Wine release 1.7.23
...ndroid. riched20/tests: Fix test on 64-bit. configure: Improve the check for the resolver library. configure: Add a check for sys/ucontext.h and include it where appropriate. ntdll: Directly use ucontext_t instead of SIGCONTEXT on all platforms. ntdll: Use the standard mcontext_t type for the signal context on Android. libwine: Update LD_LIBRARY_PATH in the current process from the JNI environment. libwine: No longer look for libraries in the dll path on Android. vnbt.vxd: Include winsock2.h before other headers. secur32/tests: Include winsock2.h bef...
2013 Oct 28
5
FreeBSD PVH guest support
...extern u_int64_t hammer_time(u_int64_t, u_int64_t); +#ifdef XENHVM +extern u_int64_t hammer_time_xen(start_info_t *, u_int64_t); +#endif extern void printcpuinfo(void); /* XXX header file */ extern void identify_cpu(void); @@ -166,6 +177,23 @@ static int set_fpcontext(struct thread *td, const mcontext_t *mcp, char *xfpustate, size_t xfpustate_len); SYSINIT(cpu, SI_SUB_CPU, SI_ORDER_FIRST, cpu_startup, NULL); +/* Preload data parse function */ +static caddr_t native_parse_preload_data(u_int64_t); + +/* Native function to fetch the e820 map */ +static void native_fetch_e820_map(caddr_t, stru...