Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
47d77025
Commit
47d77025
authored
May 15, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Added a stub for RtlUnwindEx on x86_64.
parent
644f5767
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
8 deletions
+18
-8
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-0
signal_x86_64.c
dlls/ntdll/signal_x86_64.c
+17
-8
No files found.
dlls/ntdll/ntdll.spec
View file @
47d77025
...
...
@@ -888,6 +888,7 @@
@ stdcall RtlUnlockHeap(long)
# @ stub RtlUnlockMemoryStreamRegion
@ stdcall -register RtlUnwind(ptr ptr ptr ptr)
@ stdcall -arch=x86_64 RtlUnwindEx(long long ptr long ptr)
@ stdcall RtlUpcaseUnicodeChar(long)
@ stdcall RtlUpcaseUnicodeString(ptr ptr long)
@ stdcall RtlUpcaseUnicodeStringToAnsiString(ptr ptr long)
...
...
dlls/ntdll/signal_x86_64.c
View file @
47d77025
...
...
@@ -897,30 +897,39 @@ PVOID WINAPI RtlVirtualUnwind ( ULONG type, ULONG64 base, ULONG64 pc,
/*******************************************************************
* RtlUnwind (NTDLL.@)
* RtlUnwind
Ex
(NTDLL.@)
*/
void
WINAPI
__regs_RtlUnwind
(
EXCEPTION_REGISTRATION_RECORD
*
pEndFrame
,
PVOID
targetIp
,
PEXCEPTION_RECORD
pRecord
,
PVOID
retval
,
CONTEXT
*
context
)
void
WINAPI
RtlUnwindEx
(
ULONG64
frame
,
ULONG64
target_ip
,
EXCEPTION_RECORD
*
rec
,
ULONG64
retval
,
CONTEXT
*
context
,
UNWIND_HISTORY_TABLE
*
table
)
{
EXCEPTION_RECORD
record
;
/* build an exception record, if we do not have one */
if
(
!
pRecord
)
if
(
!
rec
)
{
record
.
ExceptionCode
=
STATUS_UNWIND
;
record
.
ExceptionFlags
=
0
;
record
.
ExceptionRecord
=
NULL
;
record
.
ExceptionAddress
=
(
void
*
)
context
->
Rip
;
record
.
NumberParameters
=
0
;
pRecord
=
&
record
;
rec
=
&
record
;
}
pRecord
->
ExceptionFlags
|=
EH_UNWINDING
|
(
pEndF
rame
?
0
:
EH_EXIT_UNWIND
);
rec
->
ExceptionFlags
|=
EH_UNWINDING
|
(
f
rame
?
0
:
EH_EXIT_UNWIND
);
FIXME
(
"code=%x flags=%x not implemented on x86_64
\n
"
,
pRecord
->
ExceptionCode
,
pRecord
->
ExceptionFlags
);
FIXME
(
"code=%x flags=%x not implemented on x86_64
\n
"
,
rec
->
ExceptionCode
,
rec
->
ExceptionFlags
);
NtTerminateProcess
(
GetCurrentProcess
(),
1
);
}
/*******************************************************************
* RtlUnwind (NTDLL.@)
*/
void
WINAPI
__regs_RtlUnwind
(
ULONG64
frame
,
ULONG64
target_ip
,
EXCEPTION_RECORD
*
rec
,
ULONG64
retval
,
CONTEXT
*
context
)
{
RtlUnwindEx
(
frame
,
target_ip
,
rec
,
retval
,
context
,
NULL
);
}
DEFINE_REGS_ENTRYPOINT
(
RtlUnwind
,
4
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment