Goblint_backtraceBacktraces with custom marks.
val register_mark_printer : (mark -> string option) -> unitRegister printing function for custom mark. The function should return None for other marks.
val mark_to_string : mark -> stringConvert mark to string using registered printers, or mark_to_string_default if unhandled.
val mark_to_string_default : mark -> stringConvert mark to default string.
val add_mark : exn -> mark -> unitAdd mark to exception.
val protect : 
  mark:(unit -> mark) ->
  finally:(unit -> unit) ->
  (unit -> 'a) ->
  'aFun.protect with additional ~mark addition to all exceptions.
Print trace of marks of an exception.
Used by default for uncaught exceptions.
Print innermost mark of an exception.
Used by default for uncaught exceptions.
val find_marks : exn -> mark listFind all marks of an exception.