Fix: properly handle random signals

* Ignore signals we do not care about
* Implement custom fork/exec for Darwin to convert signals to mach
  exceptions
This commit is contained in:
Derek Parker
2015-04-25 09:46:16 -05:00
parent 047a91af5b
commit 173ee20097
7 changed files with 228 additions and 82 deletions

View File

@ -112,6 +112,7 @@ func TestVariableFunctionScoping(t *testing.T) {
err = p.Continue()
assertNoError(err, t, "Continue() returned an error")
p.Clear(pc)
_, err = p.EvalSymbol("a1")
assertNoError(err, t, "Unable to find variable a1")