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
8d105ac7
Commit
8d105ac7
authored
Feb 02, 2018
by
Piotr Caban
Committed by
Alexandre Julliard
Feb 02, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr100: Add _NonReentrantPPLLock class implementation.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f042c4ea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
lock.c
dlls/msvcrt/lock.c
+7
-3
No files found.
dlls/msvcrt/lock.c
View file @
8d105ac7
...
...
@@ -549,7 +549,9 @@ typedef struct
DEFINE_THISCALL_WRAPPER
(
_NonReentrantPPLLock_ctor
,
4
)
_NonReentrantPPLLock
*
__thiscall
_NonReentrantPPLLock_ctor
(
_NonReentrantPPLLock
*
this
)
{
FIXME
(
"(%p) stub
\n
"
,
this
);
TRACE
(
"(%p)
\n
"
,
this
);
critical_section_ctor
(
&
this
->
cs
);
return
this
;
}
...
...
@@ -558,7 +560,8 @@ _NonReentrantPPLLock* __thiscall _NonReentrantPPLLock_ctor(_NonReentrantPPLLock
DEFINE_THISCALL_WRAPPER
(
_NonReentrantPPLLock__Acquire
,
8
)
void
__thiscall
_NonReentrantPPLLock__Acquire
(
_NonReentrantPPLLock
*
this
,
cs_queue
*
q
)
{
FIXME
(
"(%p %p) stub
\n
"
,
this
,
q
);
TRACE
(
"(%p %p)
\n
"
,
this
,
q
);
cs_lock
(
&
this
->
cs
,
q
);
}
/* ?_Release@_NonReentrantPPLLock@details@Concurrency@@QAEXXZ */
...
...
@@ -566,7 +569,8 @@ void __thiscall _NonReentrantPPLLock__Acquire(_NonReentrantPPLLock *this, cs_que
DEFINE_THISCALL_WRAPPER
(
_NonReentrantPPLLock__Release
,
4
)
void
__thiscall
_NonReentrantPPLLock__Release
(
_NonReentrantPPLLock
*
this
)
{
FIXME
(
"(%p) stub
\n
"
,
this
);
TRACE
(
"(%p)
\n
"
,
this
);
critical_section_unlock
(
&
this
->
cs
);
}
/* ?_GetConcurrency@details@Concurrency@@YAIXZ */
...
...
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