8

I sometimes get following exception:

[Mach] exception: 0x%x, count: %d, code: 0x%llx 0x%llx
[Mach] Skipping registered port - it is invalid
[Mach] Skipping registered port - mask does not match
signal %d, info %p, uapVoid %p

I do not have any idea what these exceptions are about. Can somebody throw any light on this?

Udit Agarwal
  • 868
  • 9
  • 22

1 Answers1

0

try enabling the interception of generic exceptions:

in the left side of xcode, select "breakpoint navigator", on the bottom of left side click on "+", select "add exception breakpoint", a new item named "all exception" added in the breakpoint list. after click again on "+", select "add symbolic breakpoint", and write [NSException raise] inside text area named "symbol".

Now try again run your project.

Uzaak
  • 578
  • 3
  • 13
Danilo
  • 631
  • 1
  • 9
  • 24