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
69e2467a
Commit
69e2467a
authored
Aug 18, 2021
by
Piotr Caban
Committed by
Alexandre Julliard
Aug 18, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Move _Trace_agents function to concurrency.c.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3192bb97
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
concurrency.c
dlls/msvcrt/concurrency.c
+8
-0
misc.c
dlls/msvcrt/misc.c
+0
-6
No files found.
dlls/msvcrt/concurrency.c
View file @
69e2467a
...
...
@@ -2374,6 +2374,14 @@ void __cdecl Concurrency_wait(unsigned int time)
Sleep
(
time
);
}
#if _MSVCR_VER>=110
/* ?_Trace_agents@Concurrency@@YAXW4Agents_EventType@1@_JZZ */
void
WINAPIV
_Trace_agents
(
/*enum Concurrency::Agents_EventType*/
int
type
,
__int64
id
,
...)
{
FIXME
(
"(%d %s)
\n
"
,
type
,
wine_dbgstr_longlong
(
id
));
}
#endif
#ifdef __ASM_USE_THISCALL_WRAPPER
#define DEFINE_VTBL_WRAPPER(off) \
...
...
dlls/msvcrt/misc.c
View file @
69e2467a
...
...
@@ -562,12 +562,6 @@ LONG CDECL __crtUnhandledException(EXCEPTION_POINTERS *ep)
SetUnhandledExceptionFilter
(
NULL
);
return
UnhandledExceptionFilter
(
ep
);
}
/* ?_Trace_agents@Concurrency@@YAXW4Agents_EventType@1@_JZZ */
void
WINAPIV
_Trace_agents
(
/*enum Concurrency::Agents_EventType*/
int
type
,
__int64
id
,
...)
{
FIXME
(
"(%d %s)
\n
"
,
type
,
wine_dbgstr_longlong
(
id
));
}
#endif
#if _MSVCR_VER>=120
...
...
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