00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #ifndef ACEDIA_CONTEXT_H
00031 #define ACEDIA_CONTEXT_H
00032
00033 #ifndef _XOPEN_SOURCE
00034 #define _XOPEN_SOURCE
00035 #endif
00036
00037 #include "acedia_config.hpp"
00038
00039 #if defined (ACEDIA_MACOS) || defined (ACEDIA_LINUX)
00040 # define ACEDIA_UCONTEXT_IMPL
00041 #elif defined (ACEDIA_WINDOWS)
00042 # define ACEDIA_FIBER_IMPL
00043 #endif
00044
00045 #ifdef ACEDIA_UCONTEXT_IMPL
00046
00047
00048
00049
00050
00051 #include <ucontext.h>
00052 #include <sys/mman.h>
00053 #include <signal.h>
00054 #include <cstddef>
00055
00056 namespace acedia
00057 {
00058 static const std::size_t STACK_SIZE = SIGSTKSZ;
00059
00060 class Context
00061 {
00062
00063 ucontext_t ctx;
00064 void *stack;
00065
00066 void init();
00067
00068 public:
00069
00070 Context(void (*func)(void), int arg1);
00071 ~Context();
00072 Context() throw();
00073
00074 inline static void swap(Context &from, Context &to)
00075 {
00076 swapcontext(&(from.ctx), &(to.ctx));
00077 }
00078
00079 };
00080
00081 }
00082
00083 #elif defined(ACEDIA_FIBER_IMPL)
00084
00085
00086
00087
00088
00089 #include <Winsock2.h>
00090 #include <Windows.h>
00091
00092 namespace acedia
00093 {
00094 class Context
00095 {
00096
00097 LPVOID fiber;
00098
00099 bool isConvertedThread;
00100
00101 void init();
00102
00103 public:
00104
00105 Context(LPFIBER_START_ROUTINE func, LPVOID arg1);
00106 ~Context();
00107 Context();
00108
00109 inline static void swap(Context &, Context &to)
00110 {
00111 SwitchToFiber(to.fiber);
00112 }
00113
00114 };
00115 }
00116
00117 #endif
00118
00119 #endif // ACEDIA_CONTEXT_H