Made libcontext compile on FreeBSD. Code formatting too.
This commit is contained in:
parent
5b3f6d850d
commit
679074fdb2
|
@ -1,18 +1,18 @@
|
||||||
/*
|
/*
|
||||||
|
*
|
||||||
libcontext - a slightly more portable version of boost::context
|
* libcontext - a slightly more portable version of boost::context
|
||||||
|
*
|
||||||
Copyright Martin Husemann 2013.
|
* Copyright Martin Husemann 2013.
|
||||||
Copyright Oliver Kowalke 2009.
|
* Copyright Oliver Kowalke 2009.
|
||||||
Copyright Sergue E. Leontiev 2013.
|
* Copyright Sergue E. Leontiev 2013.
|
||||||
Copyright Thomas Sailer 2013.
|
* Copyright Thomas Sailer 2013.
|
||||||
Minor modifications by Tomasz Wlostowski 2016.
|
* Minor modifications by Tomasz Wlostowski 2016.
|
||||||
|
*
|
||||||
Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
(See accompanying file LICENSE_1_0.txt or copy at
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
http://www.boost.org/LICENSE_1_0.txt)
|
* http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __LIBCONTEXT_H
|
#ifndef __LIBCONTEXT_H
|
||||||
#define __LIBCONTEXT_H
|
#define __LIBCONTEXT_H
|
||||||
|
@ -27,41 +27,41 @@
|
||||||
#define LIBCONTEXT_COMPILER_gcc
|
#define LIBCONTEXT_COMPILER_gcc
|
||||||
|
|
||||||
#if defined(__linux__)
|
#if defined(__linux__)
|
||||||
#ifdef __x86_64__
|
#ifdef __x86_64__
|
||||||
#define LIBCONTEXT_PLATFORM_linux_x86_64
|
#define LIBCONTEXT_PLATFORM_linux_x86_64
|
||||||
#define LIBCONTEXT_CALL_CONVENTION
|
#define LIBCONTEXT_CALL_CONVENTION
|
||||||
|
|
||||||
#elif __i386__
|
#elif __i386__
|
||||||
#define LIBCONTEXT_PLATFORM_linux_i386
|
#define LIBCONTEXT_PLATFORM_linux_i386
|
||||||
#define LIBCONTEXT_CALL_CONVENTION
|
#define LIBCONTEXT_CALL_CONVENTION
|
||||||
#elif __arm__
|
#elif __arm__
|
||||||
#define LIBCONTEXT_PLATFORM_linux_arm32
|
#define LIBCONTEXT_PLATFORM_linux_arm32
|
||||||
#define LIBCONTEXT_CALL_CONVENTION
|
#define LIBCONTEXT_CALL_CONVENTION
|
||||||
#elif __aarch64__
|
#elif __aarch64__
|
||||||
#define LIBCONTEXT_PLATFORM_linux_arm64
|
#define LIBCONTEXT_PLATFORM_linux_arm64
|
||||||
#define LIBCONTEXT_CALL_CONVENTION
|
#define LIBCONTEXT_CALL_CONVENTION
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#elif defined(__MINGW32__) || defined (__MINGW64__)
|
#elif defined(__MINGW32__) || defined(__MINGW64__)
|
||||||
#if defined(__x86_64__)
|
#if defined(__x86_64__)
|
||||||
#define LIBCONTEXT_COMPILER_gcc
|
#define LIBCONTEXT_COMPILER_gcc
|
||||||
#define LIBCONTEXT_PLATFORM_windows_x86_64
|
#define LIBCONTEXT_PLATFORM_windows_x86_64
|
||||||
#define LIBCONTEXT_CALL_CONVENTION
|
#define LIBCONTEXT_CALL_CONVENTION
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__i386__)
|
#if defined(__i386__)
|
||||||
#define LIBCONTEXT_COMPILER_gcc
|
#define LIBCONTEXT_COMPILER_gcc
|
||||||
#define LIBCONTEXT_PLATFORM_windows_i386
|
#define LIBCONTEXT_PLATFORM_windows_i386
|
||||||
#define LIBCONTEXT_CALL_CONVENTION __cdecl
|
#define LIBCONTEXT_CALL_CONVENTION __cdecl
|
||||||
#endif
|
#endif
|
||||||
#elif defined(__APPLE__) && defined(__MACH__)
|
#elif defined(__APPLE__) && defined(__MACH__)
|
||||||
#if defined (__i386__)
|
#if defined(__i386__)
|
||||||
#define LIBCONTEXT_PLATFORM_apple_i386
|
#define LIBCONTEXT_PLATFORM_apple_i386
|
||||||
#define LIBCONTEXT_CALL_CONVENTION
|
#define LIBCONTEXT_CALL_CONVENTION
|
||||||
#elif defined (__x86_64__)
|
#elif defined(__x86_64__)
|
||||||
#define LIBCONTEXT_PLATFORM_apple_x86_64
|
#define LIBCONTEXT_PLATFORM_apple_x86_64
|
||||||
#define LIBCONTEXT_CALL_CONVENTION
|
#define LIBCONTEXT_CALL_CONVENTION
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -73,23 +73,24 @@ namespace libcontext {
|
||||||
typedef int intptr_t;
|
typedef int intptr_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef void* fcontext_t;
|
typedef void* fcontext_t;
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C"{
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
intptr_t LIBCONTEXT_CALL_CONVENTION jump_fcontext( fcontext_t * ofc, fcontext_t nfc,
|
intptr_t LIBCONTEXT_CALL_CONVENTION jump_fcontext( fcontext_t* ofc, fcontext_t nfc,
|
||||||
intptr_t vp, bool preserve_fpu = false);
|
intptr_t vp, bool preserve_fpu = false );
|
||||||
fcontext_t LIBCONTEXT_CALL_CONVENTION make_fcontext( void * sp, size_t size, void (* fn)( intptr_t) );
|
fcontext_t LIBCONTEXT_CALL_CONVENTION make_fcontext( void* sp, size_t size,
|
||||||
|
void (* fn)( intptr_t ) );
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}; // namespace
|
}; // namespace
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}; // extern "C"
|
}; // extern "C"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue