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
834db731
Commit
834db731
authored
Jan 24, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Jan 25, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Implement IoAcquireCancelSpinLock().
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e834d38c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
9 deletions
+10
-9
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+0
-9
sync.c
dlls/ntoskrnl.exe/sync.c
+9
-0
wdm.h
include/ddk/wdm.h
+1
-0
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
834db731
...
...
@@ -776,15 +776,6 @@ void WINAPI ExReleaseFastMutexUnsafe(PFAST_MUTEX FastMutex)
FIXME
(
"(%p): stub
\n
"
,
FastMutex
);
}
/***********************************************************************
* IoAcquireCancelSpinLock (NTOSKRNL.EXE.@)
*/
void
WINAPI
IoAcquireCancelSpinLock
(
PKIRQL
irql
)
{
FIXME
(
"(%p): stub
\n
"
,
irql
);
}
/***********************************************************************
* IoAllocateDriverObjectExtension (NTOSKRNL.EXE.@)
*/
...
...
dlls/ntoskrnl.exe/sync.c
View file @
834db731
...
...
@@ -417,6 +417,15 @@ KIRQL WINAPI KeAcquireSpinLockRaiseToDpc( KSPIN_LOCK *lock )
static
KSPIN_LOCK
cancel_lock
;
/***********************************************************************
* IoAcquireCancelSpinLock (NTOSKRNL.EXE.@)
*/
void
WINAPI
IoAcquireCancelSpinLock
(
KIRQL
*
irql
)
{
TRACE
(
"irql %p.
\n
"
,
irql
);
KeAcquireSpinLock
(
&
cancel_lock
,
irql
);
}
/***********************************************************************
* IoReleaseCancelSpinLock (NTOSKRNL.EXE.@)
*/
void
WINAPI
IoReleaseCancelSpinLock
(
KIRQL
irql
)
...
...
include/ddk/wdm.h
View file @
834db731
...
...
@@ -1388,6 +1388,7 @@ PSLIST_ENTRY WINAPI ExInterlockedPopEntrySList(PSLIST_HEADER,PKSPIN_LOCK);
PSLIST_ENTRY
WINAPI
ExInterlockedPushEntrySList
(
PSLIST_HEADER
,
PSLIST_ENTRY
,
PKSPIN_LOCK
);
void
WINAPI
ExReleaseFastMutexUnsafe
(
PFAST_MUTEX
);
void
WINAPI
IoAcquireCancelSpinLock
(
KIRQL
*
);
NTSTATUS
WINAPI
IoAllocateDriverObjectExtension
(
PDRIVER_OBJECT
,
PVOID
,
ULONG
,
PVOID
*
);
PVOID
WINAPI
IoAllocateErrorLogEntry
(
PVOID
,
UCHAR
);
PIRP
WINAPI
IoAllocateIrp
(
CCHAR
,
BOOLEAN
);
...
...
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