mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
ntdll: Implemented RtlCaptureStackBackTrace for i386.
This commit is contained in:
parent
d45fca8f7c
commit
d90f691e58
@ -2285,8 +2285,30 @@ DEFINE_REGS_ENTRYPOINT( RtlRaiseException, 1 )
|
||||
*/
|
||||
USHORT WINAPI RtlCaptureStackBackTrace( ULONG skip, ULONG count, PVOID *buffer, ULONG *hash )
|
||||
{
|
||||
FIXME( "(%d, %d, %p, %p) stub!\n", skip, count, buffer, hash );
|
||||
return 0;
|
||||
CONTEXT context;
|
||||
ULONG i;
|
||||
ULONG *frame;
|
||||
|
||||
RtlCaptureContext( &context );
|
||||
if (hash) *hash = 0;
|
||||
frame = (ULONG *)context.Ebp;
|
||||
|
||||
while (skip--)
|
||||
{
|
||||
if (((void *)frame < NtCurrentTeb()->Tib.StackLimit) ||
|
||||
((void *)(frame + 1) >= NtCurrentTeb()->Tib.StackBase)) return 0;
|
||||
frame = (ULONG *)*frame;
|
||||
}
|
||||
|
||||
for (i = 0; i < count; i++)
|
||||
{
|
||||
if (((void *)frame < NtCurrentTeb()->Tib.StackLimit) ||
|
||||
((void *)(frame + 1) >= NtCurrentTeb()->Tib.StackBase)) break;
|
||||
buffer[i] = (void *)frame[1];
|
||||
if (hash) *hash += frame[1];
|
||||
frame = (ULONG *)*frame;
|
||||
}
|
||||
return i;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user