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
2a65d21d
Commit
2a65d21d
authored
Mar 28, 2016
by
Daniel Lehman
Committed by
Alexandre Julliard
Mar 30, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp120: Add _Mtx_current_owns.
Signed-off-by:
Daniel Lehman
<
dlehman@esri.com
>
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
31bc775c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
3 deletions
+8
-3
msvcp110.spec
dlls/msvcp110/msvcp110.spec
+1
-1
msvcp120.spec
dlls/msvcp120/msvcp120.spec
+1
-1
msvcp120_app.spec
dlls/msvcp120_app/msvcp120_app.spec
+1
-1
misc.c
dlls/msvcp90/misc.c
+5
-0
No files found.
dlls/msvcp110/msvcp110.spec
View file @
2a65d21d
...
...
@@ -3818,7 +3818,7 @@
@ stub _Lock_shared_ptr_spin_lock
@ cdecl _Mbrtowc(ptr ptr long ptr ptr)
@ stub _Mtx_clear_owner
@
stub _Mtx_current_owns
@
cdecl _Mtx_current_owns(ptr)
@ cdecl _Mtx_destroy(ptr)
@ cdecl _Mtx_getconcrtcs(ptr)
@ cdecl _Mtx_init(ptr long)
...
...
dlls/msvcp120/msvcp120.spec
View file @
2a65d21d
...
...
@@ -3763,7 +3763,7 @@
@ stub _Lock_shared_ptr_spin_lock
@ cdecl _Mbrtowc(ptr ptr long ptr ptr)
@ stub _Mtx_clear_owner
@
stub _Mtx_current_owns
@
cdecl _Mtx_current_owns(ptr)
@ cdecl _Mtx_destroy(ptr)
@ cdecl _Mtx_getconcrtcs(ptr)
@ cdecl _Mtx_init(ptr long)
...
...
dlls/msvcp120_app/msvcp120_app.spec
View file @
2a65d21d
...
...
@@ -3763,7 +3763,7 @@
@ stub _Lock_shared_ptr_spin_lock
@ cdecl _Mbrtowc(ptr ptr long ptr ptr) msvcp120._Mbrtowc
@ stub _Mtx_clear_owner
@
stub
_Mtx_current_owns
@
cdecl _Mtx_current_owns(ptr) msvcp120.
_Mtx_current_owns
@ cdecl _Mtx_destroy(ptr) msvcp120._Mtx_destroy
@ cdecl _Mtx_getconcrtcs(ptr) msvcp120._Mtx_getconcrtcs
@ cdecl _Mtx_init(ptr long) msvcp120._Mtx_init
...
...
dlls/msvcp90/misc.c
View file @
2a65d21d
...
...
@@ -487,6 +487,11 @@ void __cdecl _Mtx_destroy(_Mtx_t *mtx)
MSVCRT_operator_delete
(
*
mtx
);
}
int
__cdecl
_Mtx_current_owns
(
_Mtx_t
*
mtx
)
{
return
(
*
mtx
)
->
thread_id
==
GetCurrentThreadId
();
}
int
__cdecl
_Mtx_lock
(
_Mtx_t
*
mtx
)
{
if
((
*
mtx
)
->
thread_id
!=
GetCurrentThreadId
())
{
...
...
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