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
d3722971
Commit
d3722971
authored
Nov 14, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Export __chkstk_arm64ec().
parent
220a70be
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
0 deletions
+13
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-0
signal_arm64ec.c
dlls/ntdll/signal_arm64ec.c
+11
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
d3722971
...
@@ -1670,6 +1670,7 @@
...
@@ -1670,6 +1670,7 @@
@ stdcall -import ZombifyActCtx(ptr)
@ stdcall -import ZombifyActCtx(ptr)
@ stdcall -arch=arm,x86_64 -private __C_specific_handler(ptr long ptr ptr) NTDLL.__C_specific_handler
@ stdcall -arch=arm,x86_64 -private __C_specific_handler(ptr long ptr ptr) NTDLL.__C_specific_handler
@ cdecl -arch=arm,x86_64 -norelay __chkstk() NTDLL.__chkstk
@ cdecl -arch=arm,x86_64 -norelay __chkstk() NTDLL.__chkstk
@ cdecl -arch=arm64ec -norelay __chkstk_arm64ec() NTDLL.__chkstk_arm64ec
@ stub _DebugOut
@ stub _DebugOut
@ stub _DebugPrintf
@ stub _DebugPrintf
@ stdcall _hread(long ptr long)
@ stdcall _hread(long ptr long)
...
...
dlls/ntdll/ntdll.spec
View file @
d3722971
...
@@ -1506,6 +1506,7 @@
...
@@ -1506,6 +1506,7 @@
@ cdecl -private -arch=i386 _CIsqrt()
@ cdecl -private -arch=i386 _CIsqrt()
@ stdcall -arch=!i386 __C_specific_handler(ptr long ptr ptr)
@ stdcall -arch=!i386 __C_specific_handler(ptr long ptr ptr)
@ cdecl -arch=!i386 -norelay __chkstk()
@ cdecl -arch=!i386 -norelay __chkstk()
@ cdecl -arch=arm64ec -norelay __chkstk_arm64ec()
@ cdecl __isascii(long)
@ cdecl __isascii(long)
@ cdecl __iscsym(long)
@ cdecl __iscsym(long)
@ cdecl __iscsymf(long)
@ cdecl __iscsymf(long)
...
...
dlls/ntdll/signal_arm64ec.c
View file @
d3722971
...
@@ -170,6 +170,17 @@ void __attribute__((naked)) __chkstk(void)
...
@@ -170,6 +170,17 @@ void __attribute__((naked)) __chkstk(void)
}
}
/**************************************************************************
* __chkstk_arm64ec (NTDLL.@)
*
* Supposed to touch all the stack pages, but we shouldn't need that.
*/
void
__attribute__
((
naked
))
__chkstk_arm64ec
(
void
)
{
asm
(
"ret"
);
}
/***********************************************************************
/***********************************************************************
* RtlRaiseException (NTDLL.@)
* RtlRaiseException (NTDLL.@)
*/
*/
...
...
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