projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Swap to using _longjmp/_setjmp instead of longjmp/setjmp
[openssl.git]
/
crypto
/
async
/
arch
/
async_posix.h
diff --git
a/crypto/async/arch/async_posix.h
b/crypto/async/arch/async_posix.h
index
650d918
..
0e6a0a0
100644
(file)
--- a/
crypto/async/arch/async_posix.h
+++ b/
crypto/async/arch/async_posix.h
@@
-80,9
+80,9
@@
static inline int async_fibre_swapcontext(async_fibre *o, async_fibre *n, int r)
{
o->env_init = 1;
- if (!r || !setjmp(o->env)) {
+ if (!r || !
_
setjmp(o->env)) {
if (n->env_init)
- longjmp(n->env, 1);
+
_
longjmp(n->env, 1);
else
setcontext(&n->fibre);
}