Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2016-05-06 16:13:45 +0000
committerEugene Tarassov2016-05-06 16:13:45 +0000
commit180951b5998c03d7286feec0a3d06c089ab41d28 (patch)
tree4330eea67cd37664174e4f3194f5f5a25c32fce7 /agent/system/Darwin/tcf/context-darwin.c
parentb046216703d4269674ee3ab545ee9f9564150735 (diff)
downloadorg.eclipse.tcf.agent-180951b5998c03d7286feec0a3d06c089ab41d28.tar.gz
org.eclipse.tcf.agent-180951b5998c03d7286feec0a3d06c089ab41d28.tar.xz
org.eclipse.tcf.agent-180951b5998c03d7286feec0a3d06c089ab41d28.zip
Bug 493146 - Unable to build on darwin
Diffstat (limited to 'agent/system/Darwin/tcf/context-darwin.c')
-rw-r--r--agent/system/Darwin/tcf/context-darwin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/system/Darwin/tcf/context-darwin.c b/agent/system/Darwin/tcf/context-darwin.c
index 2b6cb508..a91b59cf 100644
--- a/agent/system/Darwin/tcf/context-darwin.c
+++ b/agent/system/Darwin/tcf/context-darwin.c
@@ -216,7 +216,7 @@ int context_continue(Context * ctx) {
errno = err;
return -1;
}
- ctx->pending_signals &= ~(1 << signal);
+ sigset_set(&ctx->pending_signals, signal, 0);
if (syscall_never_returns(ctx)) {
EXT(ctx)->syscall_enter = 0;
EXT(ctx)->syscall_exit = 0;

Back to the top