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
bad677d5
Commit
bad677d5
authored
Dec 09, 2008
by
Ricardo Filipe
Committed by
Alexandre Julliard
Dec 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hal: Add stubs for ExAcquireFastMutex and ExReleaseFastMutex.
parent
f2f90b69
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
2 deletions
+31
-2
hal.c
dlls/hal/hal.c
+20
-0
hal.spec
dlls/hal/hal.spec
+2
-2
wdm.h
include/ddk/wdm.h
+9
-0
No files found.
dlls/hal/hal.c
View file @
bad677d5
...
...
@@ -54,6 +54,26 @@ WINE_DEFAULT_DEBUG_CHANNEL(ntoskrnl);
#ifdef DEFINE_FASTCALL1_ENTRYPOINT
DEFINE_FASTCALL1_ENTRYPOINT
(
ExAcquireFastMutex
)
VOID
__regs_ExAcquireFastMutex
(
PFAST_MUTEX
FastMutex
)
#else
VOID
ExAcquireFastMutex
(
PFAST_MUTEX
FastMutex
)
#endif
{
FIXME
(
"%p: stub
\n
"
,
FastMutex
);
}
#ifdef DEFINE_FASTCALL1_ENTRYPOINT
DEFINE_FASTCALL1_ENTRYPOINT
(
ExReleaseFastMutex
)
VOID
__regs_ExReleaseFastMutex
(
PFAST_MUTEX
FastMutex
)
#else
VOID
ExReleaseFastMutex
(
PFAST_MUTEX
FastMutex
)
#endif
{
FIXME
(
"%p: stub
\n
"
,
FastMutex
);
}
#ifdef DEFINE_FASTCALL1_ENTRYPOINT
DEFINE_FASTCALL1_ENTRYPOINT
(
KfAcquireSpinLock
)
KIRQL
WINAPI
__regs_KfAcquireSpinLock
(
PKSPIN_LOCK
SpinLock
)
#else
...
...
dlls/hal/hal.spec
View file @
bad677d5
@ st
ub ExAcquireFastMutex
@ st
ub ExReleaseFastMutex
@ st
dcall -norelay ExAcquireFastMutex(ptr)
@ st
dcall -norelay ExReleaseFastMutex(ptr)
@ stub ExTryToAcquireFastMutex
@ stub HalClearSoftwareInterrupt
@ stub HalRequestSoftwareInterrupt
...
...
include/ddk/wdm.h
View file @
bad677d5
...
...
@@ -132,6 +132,15 @@ typedef struct _IO_WORKITEM *PIO_WORKITEM;
typedef
struct
_OBJECT_TYPE
*
POBJECT_TYPE
;
typedef
struct
_OBJECT_HANDLE_INFORMATION
*
POBJECT_HANDLE_INFORMATION
;
typedef
struct
_FAST_MUTEX
{
LONG
Count
;
PKTHREAD
Owner
;
ULONG
Contention
;
KEVENT
Gate
;
ULONG
OldIrql
;
}
FAST_MUTEX
,
*
PFAST_MUTEX
;
#define MAXIMUM_VOLUME_LABEL_LENGTH (32 * sizeof(WCHAR))
typedef
struct
_VPB
{
...
...
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