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
6ef156e6
Commit
6ef156e6
authored
Oct 15, 2014
by
Vincent Povirk
Committed by
Alexandre Julliard
Oct 16, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Use mono_runtime_quit in shutdown process.
parent
a99d8cb2
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
corruntimehost.c
dlls/mscoree/corruntimehost.c
+1
-1
metahost.c
dlls/mscoree/metahost.c
+2
-2
mscoree_private.h
dlls/mscoree/mscoree_private.h
+1
-1
No files found.
dlls/mscoree/corruntimehost.c
View file @
6ef156e6
...
...
@@ -1124,7 +1124,7 @@ __int32 WINAPI _CorExeMain(void)
if
(
domain
)
{
mono_thread_manage
();
mono_
jit_cleanup
(
domain
);
mono_
runtime_quit
(
);
}
return
exit_code
;
...
...
dlls/mscoree/metahost.c
View file @
6ef156e6
...
...
@@ -88,7 +88,6 @@ static void (CDECL *mono_free)(void *);
static
MonoImage
*
(
CDECL
*
mono_image_open
)(
const
char
*
fname
,
MonoImageOpenStatus
*
status
);
MonoImage
*
(
CDECL
*
mono_image_open_from_module_handle
)(
HMODULE
module_handle
,
char
*
fname
,
UINT
has_entry_point
,
MonoImageOpenStatus
*
status
);
static
void
(
CDECL
*
mono_install_assembly_preload_hook
)(
MonoAssemblyPreLoadFunc
func
,
void
*
user_data
);
void
(
CDECL
*
mono_jit_cleanup
)(
MonoDomain
*
domain
);
int
(
CDECL
*
mono_jit_exec
)(
MonoDomain
*
domain
,
MonoAssembly
*
assembly
,
int
argc
,
char
*
argv
[]);
MonoDomain
*
(
CDECL
*
mono_jit_init
)(
const
char
*
file
);
static
int
(
CDECL
*
mono_jit_set_trace_options
)(
const
char
*
options
);
...
...
@@ -100,6 +99,7 @@ static void (CDECL *mono_profiler_install)(MonoProfiler *prof, MonoProfileFunc s
MonoType
*
(
CDECL
*
mono_reflection_type_from_name
)(
char
*
name
,
MonoImage
*
image
);
MonoObject
*
(
CDECL
*
mono_runtime_invoke
)(
MonoMethod
*
method
,
void
*
obj
,
void
**
params
,
MonoObject
**
exc
);
void
(
CDECL
*
mono_runtime_object_init
)(
MonoObject
*
this_obj
);
void
(
CDECL
*
mono_runtime_quit
)(
void
);
static
void
(
CDECL
*
mono_set_dirs
)(
const
char
*
assembly_dir
,
const
char
*
config_dir
);
static
void
(
CDECL
*
mono_set_verbose_level
)(
DWORD
level
);
MonoString
*
(
CDECL
*
mono_string_new
)(
MonoDomain
*
domain
,
const
char
*
str
);
...
...
@@ -197,7 +197,6 @@ static HRESULT load_mono(CLRRuntimeInfo *This)
LOAD_MONO_FUNCTION
(
mono_free
);
LOAD_MONO_FUNCTION
(
mono_image_open
);
LOAD_MONO_FUNCTION
(
mono_install_assembly_preload_hook
);
LOAD_MONO_FUNCTION
(
mono_jit_cleanup
);
LOAD_MONO_FUNCTION
(
mono_jit_exec
);
LOAD_MONO_FUNCTION
(
mono_jit_init
);
LOAD_MONO_FUNCTION
(
mono_jit_set_trace_options
);
...
...
@@ -209,6 +208,7 @@ static HRESULT load_mono(CLRRuntimeInfo *This)
LOAD_MONO_FUNCTION
(
mono_reflection_type_from_name
);
LOAD_MONO_FUNCTION
(
mono_runtime_invoke
);
LOAD_MONO_FUNCTION
(
mono_runtime_object_init
);
LOAD_MONO_FUNCTION
(
mono_runtime_quit
);
LOAD_MONO_FUNCTION
(
mono_set_dirs
);
LOAD_MONO_FUNCTION
(
mono_set_verbose_level
);
LOAD_MONO_FUNCTION
(
mono_stringify_assembly_name
);
...
...
dlls/mscoree/mscoree_private.h
View file @
6ef156e6
...
...
@@ -145,7 +145,6 @@ extern MonoClass* (CDECL *mono_class_from_mono_type)(MonoType *type);
extern
MonoClass
*
(
CDECL
*
mono_class_from_name
)(
MonoImage
*
image
,
const
char
*
name_space
,
const
char
*
name
);
extern
MonoMethod
*
(
CDECL
*
mono_class_get_method_from_name
)(
MonoClass
*
klass
,
const
char
*
name
,
int
param_count
);
extern
MonoAssembly
*
(
CDECL
*
mono_domain_assembly_open
)(
MonoDomain
*
domain
,
const
char
*
name
);
extern
void
(
CDECL
*
mono_jit_cleanup
)(
MonoDomain
*
domain
);
extern
int
(
CDECL
*
mono_jit_exec
)(
MonoDomain
*
domain
,
MonoAssembly
*
assembly
,
int
argc
,
char
*
argv
[]);
extern
MonoDomain
*
(
CDECL
*
mono_jit_init
)(
const
char
*
file
);
extern
MonoImage
*
(
CDECL
*
mono_image_open_from_module_handle
)(
HMODULE
module_handle
,
char
*
fname
,
UINT
has_entry_point
,
MonoImageOpenStatus
*
status
);
...
...
@@ -156,6 +155,7 @@ extern void* (CDECL *mono_object_unbox)(MonoObject *obj);
extern
MonoType
*
(
CDECL
*
mono_reflection_type_from_name
)(
char
*
name
,
MonoImage
*
image
);
extern
MonoObject
*
(
CDECL
*
mono_runtime_invoke
)(
MonoMethod
*
method
,
void
*
obj
,
void
**
params
,
MonoObject
**
exc
);
extern
void
(
CDECL
*
mono_runtime_object_init
)(
MonoObject
*
this_obj
);
extern
void
(
CDECL
*
mono_runtime_quit
)(
void
);
extern
MonoString
*
(
CDECL
*
mono_string_new
)(
MonoDomain
*
domain
,
const
char
*
str
);
extern
MonoThread
*
(
CDECL
*
mono_thread_attach
)(
MonoDomain
*
domain
);
extern
void
(
CDECL
*
mono_thread_manage
)(
void
);
...
...
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