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
42cfb0ab
Commit
42cfb0ab
authored
Sep 28, 2016
by
Piotr Caban
Committed by
Alexandre Julliard
Sep 28, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp140: Add _Cnd_destroy_in_situ implementation.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
89f2dafe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
7 deletions
+12
-7
msvcp140.spec
dlls/msvcp140/msvcp140.spec
+7
-7
misc.c
dlls/msvcp90/misc.c
+5
-0
No files found.
dlls/msvcp140/msvcp140.spec
View file @
42cfb0ab
...
...
@@ -3621,17 +3621,17 @@
@ cdecl -arch=win64 ?xsputn@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAA_JPEB_W_J@Z(ptr ptr long) basic_streambuf_wchar_xsputn
@ stub _Chmod
@ stub _Close_dir
@ cdecl _Cnd_broadcast(ptr)
_Cnd_broadcast
@ cdecl _Cnd_destroy(ptr)
_Cnd_destroy
@
stub _Cnd_destroy_in_situ
@ cdecl _Cnd_broadcast(ptr)
@ cdecl _Cnd_destroy(ptr)
@
cdecl _Cnd_destroy_in_situ(ptr)
@ cdecl _Cnd_do_broadcast_at_thread_exit()
@ cdecl _Cnd_init(ptr)
_Cnd_init
@ cdecl _Cnd_init(ptr)
@ cdecl _Cnd_init_in_situ(ptr)
@ cdecl _Cnd_register_at_thread_exit(ptr ptr ptr)
@ cdecl _Cnd_signal(ptr)
_Cnd_signal
@ cdecl _Cnd_timedwait(ptr ptr ptr)
_Cnd_timedwait
@ cdecl _Cnd_signal(ptr)
@ cdecl _Cnd_timedwait(ptr ptr ptr)
@ cdecl _Cnd_unregister_at_thread_exit(ptr)
@ cdecl _Cnd_wait(ptr ptr)
_Cnd_wait
@ cdecl _Cnd_wait(ptr ptr)
@ stub _Copy_file
@ stub _Cosh
@ stub _Current_get
...
...
dlls/msvcp90/misc.c
View file @
42cfb0ab
...
...
@@ -655,6 +655,11 @@ int __cdecl _Cnd_signal(_Cnd_arg_t cnd)
return
0
;
}
void
__cdecl
_Cnd_destroy_in_situ
(
_Cnd_t
cnd
)
{
_Cnd_broadcast
(
CND_T_TO_ARG
(
cnd
));
}
void
__cdecl
_Cnd_destroy
(
_Cnd_arg_t
cnd
)
{
if
(
cnd
)
{
...
...
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