Skip to content

Commit

Permalink
Add a pre-generated windows configuration file
Browse files Browse the repository at this point in the history
svn path=/trunk/mono/; revision=68847
  • Loading branch information
migueldeicaza committed Dec 1, 2006
1 parent 2a9ca3e commit 8e24faa
Show file tree
Hide file tree
Showing 4 changed files with 440 additions and 5 deletions.
4 changes: 2 additions & 2 deletions man/ilasm.1
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ ilasm \- Mono IL assembler
.SH DESCRIPTION
ilasm is the Mono ILAsm assembler. You can pass one or more options to
drive the compiler, and a set of source files.

.PP
The Mono ILAsm assembler accepts options starting with / or - for mosted
options.

.PP
The Mono ILAsm assembler generates images (.exe and .dll files) that contain
CIL byte code that can be executed by any system that implemented a Common
Language Infrastructure virtual machine.
Expand Down
4 changes: 2 additions & 2 deletions mono/metadata/profiler.c
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ output_newobj_profile (GList *proflist)
for (tmp = proflist; tmp; tmp = tmp->next) {
p = tmp->data;
total += p->count;
if (p->count < 50000)
if (p->count < 500)
continue;
mp = p->mp;
m = method_get_name (mp->method);
Expand All @@ -962,7 +962,7 @@ output_newobj_profile (GList *proflist)
sorted = sort_alloc_list (mp->alloc_info);
for (tmps = sorted; tmps; tmps = tmps->next) {
ainfo = tmps->data;
if (ainfo->mem < 50000)
if (ainfo->mem < 500)
continue;
klass = ainfo->klass;
if (klass->rank) {
Expand Down
1 change: 0 additions & 1 deletion samples/embed/teste.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ main(int argc, char* argv[]) {
* if you are planning on using the dllmaps defined on the
* system configuration
*/
mono_set_dirs (NULL, NULL);
mono_config_parse (NULL);
/*
* mono_jit_init() creates a domain: each assembly is
Expand Down
Loading

0 comments on commit 8e24faa

Please sign in to comment.