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
f2437c2b
Commit
f2437c2b
authored
Sep 04, 2012
by
Vincent Povirk
Committed by
Alexandre Julliard
Sep 05, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Add support for tracing the entry point assembly.
parent
6b194615
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
0 deletions
+4
-0
corruntimehost.c
dlls/mscoree/corruntimehost.c
+2
-0
metahost.c
dlls/mscoree/metahost.c
+1
-0
mscoree_private.h
dlls/mscoree/mscoree_private.h
+1
-0
No files found.
dlls/mscoree/corruntimehost.c
View file @
f2437c2b
...
...
@@ -1073,6 +1073,8 @@ __int32 WINAPI _CorExeMain(void)
if
(
assembly
)
{
host
->
mono
->
mono_trace_set_assembly
(
assembly
);
exit_code
=
host
->
mono
->
mono_jit_exec
(
domain
,
assembly
,
argc
,
argv
);
}
else
...
...
dlls/mscoree/metahost.c
View file @
f2437c2b
...
...
@@ -207,6 +207,7 @@ static HRESULT load_mono(CLRRuntimeInfo *This, loaded_mono **result)
LOAD_MONO_FUNCTION
(
mono_stringify_assembly_name
);
LOAD_MONO_FUNCTION
(
mono_string_new
);
LOAD_MONO_FUNCTION
(
mono_thread_attach
);
LOAD_MONO_FUNCTION
(
mono_trace_set_assembly
);
/* GLib imports obsoleted by the 2.0 ABI */
if
(
This
->
mono_abi_version
==
1
)
...
...
dlls/mscoree/mscoree_private.h
View file @
f2437c2b
...
...
@@ -175,6 +175,7 @@ struct loaded_mono
void
(
CDECL
*
mono_thread_pool_cleanup
)(
void
);
void
(
CDECL
*
mono_thread_suspend_all_other_threads
)(
void
);
void
(
CDECL
*
mono_threads_set_shutting_down
)(
void
);
void
(
CDECL
*
mono_trace_set_assembly
)(
MonoAssembly
*
assembly
);
MonoString
*
(
CDECL
*
mono_string_new
)(
MonoDomain
*
domain
,
const
char
*
str
);
MonoThread
*
(
CDECL
*
mono_thread_attach
)(
MonoDomain
*
domain
);
};
...
...
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