RCBacktrace icon indicating copy to clipboard operation
RCBacktrace copied to clipboard

Getting backtrace of any thread for Objective-C and Swift

Results 4 RCBacktrace issues
Sort by recently updated
recently updated
newest added

I need all thread stack info, not only main or current

` for (index, addr) in buf.enumerated() { guard let addr = addr else { continue } let addrValue = UInt(bitPattern: addr) let symbol = StackSymbolFactory.create(address: addrValue, index: index) symbols.append(symbol) }...

/// Address for which this struct was constructed static func create(address: UInt, index: Int) -> StackSymbol { var info = dl_info() dladdr(UnsafeRawPointer(bitPattern: address), &info) let stackSymbol = StackSymbol(symbol: symbol(info: info),...