Mono.Debugger.SymbolFile.UnwindStack C# (CSharp) Method

UnwindStack() abstract private method

abstract private UnwindStack ( StackFrame last_frame, TargetMemoryAccess memory ) : StackFrame
last_frame StackFrame
memory TargetMemoryAccess
return StackFrame
        internal abstract StackFrame UnwindStack(StackFrame last_frame,
							  TargetMemoryAccess memory);

Usage Example

Ejemplo n.º 1
0
 internal StackFrame UnwindStack(StackFrame last_frame,
                                 TargetMemoryAccess memory)
 {
     return(SymbolFile.UnwindStack(last_frame, memory));
 }