# File lib/satyr.rb, line 141
    def find_crash_thread
      pointer = Satyr::FFI.sr_stacktrace_find_crash_thread @struct.to_ptr
      raise SatyrError, "Could not find crash thread" if pointer.null?
      dup = Satyr::FFI.sr_thread_dup(pointer)
      raise SatyrError, "Failed to duplicate thread" if dup.null?

      Thread.send(:new, dup)
    end