Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
3b85ab31
Commit
3b85ab31
authored
Feb 14, 2024
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Move RtlUnwind to unwind.c.
parent
8602a1c2
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
76 deletions
+25
-76
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
signal_arm.c
dlls/ntdll/signal_arm.c
+0
-19
signal_arm64.c
dlls/ntdll/signal_arm64.c
+0
-18
signal_arm64ec.c
dlls/ntdll/signal_arm64ec.c
+0
-19
signal_x86_64.c
dlls/ntdll/signal_x86_64.c
+0
-19
unwind.c
dlls/ntdll/unwind.c
+24
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
3b85ab31
...
...
@@ -1513,7 +1513,7 @@
@ cdecl __isascii(long)
@ cdecl __iscsym(long)
@ cdecl __iscsymf(long)
@ stdcall -arch=arm __jump_unwind(ptr ptr)
@ stdcall -arch=arm __jump_unwind(ptr ptr)
_local_unwind
@ cdecl __toascii(long)
@ cdecl -norelay -arch=i386 -ret64 _alldiv(int64 int64)
@ cdecl -arch=i386 -norelay _alldvrm(int64 int64)
...
...
dlls/ntdll/signal_arm.c
View file @
3b85ab31
...
...
@@ -827,25 +827,6 @@ void WINAPI RtlUnwindEx( PVOID end_frame, PVOID target_ip, EXCEPTION_RECORD *rec
}
/***********************************************************************
* RtlUnwind (NTDLL.@)
*/
void
WINAPI
RtlUnwind
(
void
*
frame
,
void
*
target_ip
,
EXCEPTION_RECORD
*
rec
,
void
*
retval
)
{
CONTEXT
context
;
RtlUnwindEx
(
frame
,
target_ip
,
rec
,
retval
,
&
context
,
NULL
);
}
/*******************************************************************
* __jump_unwind (NTDLL.@)
*/
void
WINAPI
__jump_unwind
(
void
*
frame
,
void
*
target_ip
)
{
CONTEXT
context
;
RtlUnwindEx
(
frame
,
target_ip
,
NULL
,
NULL
,
&
context
,
NULL
);
}
extern
LONG
__C_ExecuteExceptionFilter
(
PEXCEPTION_POINTERS
ptrs
,
PVOID
frame
,
PEXCEPTION_FILTER
filter
,
PUCHAR
nonvolatile
);
...
...
dlls/ntdll/signal_arm64.c
View file @
3b85ab31
...
...
@@ -841,24 +841,6 @@ void WINAPI RtlUnwindEx( PVOID end_frame, PVOID target_ip, EXCEPTION_RECORD *rec
}
/***********************************************************************
* RtlUnwind (NTDLL.@)
*/
void
WINAPI
RtlUnwind
(
void
*
frame
,
void
*
target_ip
,
EXCEPTION_RECORD
*
rec
,
void
*
retval
)
{
CONTEXT
context
;
RtlUnwindEx
(
frame
,
target_ip
,
rec
,
retval
,
&
context
,
NULL
);
}
/*******************************************************************
* _local_unwind (NTDLL.@)
*/
void
WINAPI
_local_unwind
(
void
*
frame
,
void
*
target_ip
)
{
CONTEXT
context
;
RtlUnwindEx
(
frame
,
target_ip
,
NULL
,
NULL
,
&
context
,
NULL
);
}
extern
LONG
__C_ExecuteExceptionFilter
(
PEXCEPTION_POINTERS
ptrs
,
PVOID
frame
,
PEXCEPTION_FILTER
filter
,
PUCHAR
nonvolatile
);
...
...
dlls/ntdll/signal_arm64ec.c
View file @
3b85ab31
...
...
@@ -1793,25 +1793,6 @@ void WINAPI RtlUnwindEx( PVOID end_frame, PVOID target_ip, EXCEPTION_RECORD *rec
/*******************************************************************
* RtlUnwind (NTDLL.@)
*/
void
WINAPI
RtlUnwind
(
void
*
frame
,
void
*
target_ip
,
EXCEPTION_RECORD
*
rec
,
void
*
retval
)
{
FIXME
(
"not implemented
\n
"
);
}
/*******************************************************************
* _local_unwind (NTDLL.@)
*/
void
WINAPI
_local_unwind
(
void
*
frame
,
void
*
target_ip
)
{
CONTEXT
context
;
RtlUnwindEx
(
frame
,
target_ip
,
NULL
,
NULL
,
&
context
,
NULL
);
}
/*******************************************************************
* __C_specific_handler (NTDLL.@)
*/
EXCEPTION_DISPOSITION
WINAPI
__C_specific_handler
(
EXCEPTION_RECORD
*
rec
,
...
...
dlls/ntdll/signal_x86_64.c
View file @
3b85ab31
...
...
@@ -982,25 +982,6 @@ void WINAPI RtlUnwindEx( PVOID end_frame, PVOID target_ip, EXCEPTION_RECORD *rec
/*******************************************************************
* RtlUnwind (NTDLL.@)
*/
void
WINAPI
RtlUnwind
(
void
*
frame
,
void
*
target_ip
,
EXCEPTION_RECORD
*
rec
,
void
*
retval
)
{
CONTEXT
context
;
RtlUnwindEx
(
frame
,
target_ip
,
rec
,
retval
,
&
context
,
NULL
);
}
/*******************************************************************
* _local_unwind (NTDLL.@)
*/
void
WINAPI
_local_unwind
(
void
*
frame
,
void
*
target_ip
)
{
CONTEXT
context
;
RtlUnwindEx
(
frame
,
target_ip
,
NULL
,
NULL
,
&
context
,
NULL
);
}
/*******************************************************************
* __C_specific_handler (NTDLL.@)
*/
EXCEPTION_DISPOSITION
WINAPI
__C_specific_handler
(
EXCEPTION_RECORD
*
rec
,
...
...
dlls/ntdll/unwind.c
View file @
3b85ab31
...
...
@@ -1916,4 +1916,28 @@ BOOLEAN CDECL RtlAddFunctionTable( RUNTIME_FUNCTION *table, DWORD count, ULONG_P
#endif
/* __x86_64__ */
/***********************************************************************
* Generic unwind functions
*/
/***********************************************************************
* RtlUnwind (NTDLL.@)
*/
void
WINAPI
RtlUnwind
(
void
*
frame
,
void
*
target_ip
,
EXCEPTION_RECORD
*
rec
,
void
*
retval
)
{
CONTEXT
context
;
RtlUnwindEx
(
frame
,
target_ip
,
rec
,
retval
,
&
context
,
NULL
);
}
/*******************************************************************
* _local_unwind (NTDLL.@)
*/
void
WINAPI
_local_unwind
(
void
*
frame
,
void
*
target_ip
)
{
RtlUnwind
(
frame
,
target_ip
,
NULL
,
NULL
);
}
#endif
/* !__i386__ */
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