Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
b30e0dd8
Commit
b30e0dd8
authored
Aug 26, 2014
by
Maciej Suminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Boost 1.56 compatibility fix.
parent
858e222e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
5 deletions
+27
-5
coroutine.h
include/tool/coroutine.h
+27
-5
No files found.
include/tool/coroutine.h
View file @
b30e0dd8
...
@@ -28,6 +28,7 @@
...
@@ -28,6 +28,7 @@
#include <cstdlib>
#include <cstdlib>
#include <boost/context/fcontext.hpp>
#include <boost/context/fcontext.hpp>
#include <boost/version.hpp>
#include "delegate.h"
#include "delegate.h"
...
@@ -88,6 +89,11 @@ public:
...
@@ -88,6 +89,11 @@ public:
if
(
m_saved
)
if
(
m_saved
)
delete
m_saved
;
delete
m_saved
;
#if BOOST_VERSION >= 105600
if
(
m_self
)
delete
m_self
;
#endif
if
(
m_stack
)
if
(
m_stack
)
free
(
m_stack
);
free
(
m_stack
);
}
}
...
@@ -101,7 +107,7 @@ public:
...
@@ -101,7 +107,7 @@ public:
*/
*/
void
Yield
()
void
Yield
()
{
{
boost
::
context
::
jump_fcontext
(
m_self
,
m_saved
,
0
);
jump
(
m_self
,
m_saved
,
0
);
}
}
/**
/**
...
@@ -113,7 +119,7 @@ public:
...
@@ -113,7 +119,7 @@ public:
void
Yield
(
ReturnType
&
aRetVal
)
void
Yield
(
ReturnType
&
aRetVal
)
{
{
m_retVal
=
aRetVal
;
m_retVal
=
aRetVal
;
boost
::
context
::
jump_fcontext
(
m_self
,
m_saved
,
0
);
jump
(
m_self
,
m_saved
,
0
);
}
}
/**
/**
...
@@ -147,12 +153,17 @@ public:
...
@@ -147,12 +153,17 @@ public:
assert
(
m_saved
==
NULL
);
assert
(
m_saved
==
NULL
);
m_args
=
&
aArgs
;
m_args
=
&
aArgs
;
#if BOOST_VERSION >= 105600
m_self
=
new
boost
::
context
::
fcontext_t
();
*
m_self
=
boost
::
context
::
make_fcontext
(
sp
,
m_stackSize
,
callerStub
);
#else
m_self
=
boost
::
context
::
make_fcontext
(
sp
,
m_stackSize
,
callerStub
);
m_self
=
boost
::
context
::
make_fcontext
(
sp
,
m_stackSize
,
callerStub
);
#endif
m_saved
=
new
boost
::
context
::
fcontext_t
();
m_saved
=
new
boost
::
context
::
fcontext_t
();
m_running
=
true
;
m_running
=
true
;
// off we go!
// off we go!
boost
::
context
::
jump_fcontext
(
m_saved
,
m_self
,
reinterpret_cast
<
intptr_t
>
(
this
)
);
jump
(
m_saved
,
m_self
,
reinterpret_cast
<
intptr_t
>
(
this
)
);
return
m_running
;
return
m_running
;
}
}
...
@@ -165,7 +176,7 @@ public:
...
@@ -165,7 +176,7 @@ public:
*/
*/
bool
Resume
()
bool
Resume
()
{
{
boost
::
context
::
jump_fcontext
(
m_saved
,
m_self
,
0
);
jump
(
m_saved
,
m_self
,
0
);
return
m_running
;
return
m_running
;
}
}
...
@@ -204,7 +215,18 @@ private:
...
@@ -204,7 +215,18 @@ private:
cor
->
m_running
=
false
;
cor
->
m_running
=
false
;
// go back to wherever we came from.
// go back to wherever we came from.
boost
::
context
::
jump_fcontext
(
cor
->
m_self
,
cor
->
m_saved
,
0
);
// reinterpret_cast<intptr_t>( this ));
jump
(
cor
->
m_self
,
cor
->
m_saved
,
0
);
// reinterpret_cast<intptr_t>( this ));
}
///> Wrapper for jump_fcontext to assure compatibility between different boost versions
static
inline
intptr_t
jump
(
boost
::
context
::
fcontext_t
*
aOld
,
boost
::
context
::
fcontext_t
*
aNew
,
intptr_t
aP
,
bool
aPreserveFPU
=
true
)
{
#if BOOST_VERSION >= 105600
return
boost
::
context
::
jump_fcontext
(
aOld
,
*
aNew
,
aP
,
aPreserveFPU
);
#else
return
boost
::
context
::
jump_fcontext
(
aOld
,
aNew
,
aP
,
aPreserveFPU
);
#endif
}
}
template
<
typename
T
>
template
<
typename
T
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment