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
c2a32a3a
Commit
c2a32a3a
authored
Jul 16, 2020
by
Derek Lesho
Committed by
Alexandre Julliard
Aug 04, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add stubs for Ke(/Test)AlertThread.
Signed-off-by:
Derek Lesho
<
dlesho@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2a578eae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+2
-0
sync.c
dlls/ntoskrnl.exe/sync.c
+18
-0
No files found.
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
c2a32a3a
...
...
@@ -529,6 +529,7 @@
@ stdcall KeAcquireSpinLockAtDpcLevel(ptr)
@ stdcall -arch=!i386 KeAcquireSpinLockRaiseToDpc(ptr)
@ stub KeAddSystemServiceTable
@ stdcall KeAlertThread(ptr long)
@ stdcall KeAreApcsDisabled()
@ stub KeAttachProcess
@ stdcall KeBugCheck(long)
...
...
@@ -647,6 +648,7 @@
@ stdcall KeStackAttachProcess(ptr ptr)
@ stub KeSynchronizeExecution
@ stub KeTerminateThread
@ stdcall KeTestAlertThread(long)
@ extern KeTickCount
@ stdcall KeUnstackDetachProcess(ptr)
@ stub KeUpdateRunTime
...
...
dlls/ntoskrnl.exe/sync.c
View file @
c2a32a3a
...
...
@@ -696,6 +696,24 @@ void WINAPI KeInitializeApc(PRKAPC apc, PRKTHREAD thread, KAPC_ENVIRONMENT env,
}
}
/***********************************************************************
* KeTestAlertThread (NTOSKRNL.EXE.@)
*/
BOOLEAN
WINAPI
KeTestAlertThread
(
KPROCESSOR_MODE
mode
)
{
FIXME
(
"stub! %u
\n
"
,
mode
);
return
TRUE
;
}
/***********************************************************************
* KeAlertThread (NTOSKRNL.EXE.@)
*/
BOOLEAN
WINAPI
KeAlertThread
(
PKTHREAD
thread
,
KPROCESSOR_MODE
mode
)
{
FIXME
(
"stub! %p mode %u
\n
"
,
thread
,
mode
);
return
TRUE
;
}
static
KSPIN_LOCK
cancel_lock
;
/***********************************************************************
...
...
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