15 lines
254 B
Text
15 lines
254 B
Text
|
|
output file @"Rosetta Code Stack Traces"
|
||
|
|
|
||
|
|
include "NSLog.incl"
|
||
|
|
|
||
|
|
void local fn StackTrace
|
||
|
|
CFArrayRef stackSymbols = fn ThreadCallStackSymbols
|
||
|
|
for CFStringRef symbol in stackSymbols
|
||
|
|
NSLog( @"%@", symbol )
|
||
|
|
next
|
||
|
|
end fn
|
||
|
|
|
||
|
|
fn StackTrace
|
||
|
|
|
||
|
|
HandleEvents
|