-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFiber.Win32.cpp
executable file
·85 lines (68 loc) · 1.21 KB
/
Fiber.Win32.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#include "Fiber.h"
#ifdef WIN32
#define _WIN32_WINNT 0x0400
#include <windows.h>
#include <assert.h>
namespace coroutine {
class Fiber::FiberMain : public Fiber
{
public:
FiberMain()
{
// Don't call parent constructor because it will make this a fiber
// We only want the main thread to become a fiber
m_pFiber = ConvertThreadToFiber(NULL);
}
virtual ~FiberMain()
{
}
public:
static Fiber& getInstance()
{
static FiberMain fiberMain;
return fiberMain;
}
protected:
virtual void run()
{
// The main thread should never be run like a fiber
// As we are converted from the thread, this should never run
assert( false );
}
};
const Fiber& Fiber::MAIN = Fiber::FiberMain::getInstance();
Fiber::Fiber(): m_pFiber(NULL)
{
m_pFiber = CreateFiber(0, &Fiber::proc, (void*)this);
}
Fiber::~Fiber()
{
deleteFiber();
}
bool Fiber::isValid() const
{
return ( m_pFiber != NULL );
}
void Fiber::switchTo() const
{
if( isValid() )
{
SwitchToFiber(m_pFiber);
}
}
void __stdcall Fiber::proc(void* pParam)
{
Fiber* pThis = (Fiber*)pParam;
pThis->run();
pThis->deleteFiber();
}
void Fiber::deleteFiber()
{
if( isValid() )
{
DeleteFiber(m_pFiber);
m_pFiber = NULL;
}
}
} // namespace coroutine
#endif