X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fmetadata%2FChangeLog;h=3887de1fad49d3a25e4048506e7d0e6e304e570e;hb=1d73b15a3b474570b82db3fb53e486f5505d7f50;hp=30c8726801b850e5b9d34124c6cf42f3d5ab5e45;hpb=e15bf3b239dc75fae7a61de10d42b6cf3d480861;p=mono.git diff --git a/mono/metadata/ChangeLog b/mono/metadata/ChangeLog index 30c8726801b..3887de1fad4 100644 --- a/mono/metadata/ChangeLog +++ b/mono/metadata/ChangeLog @@ -1,3 +1,102 @@ +2010-06-30 Rodrigo Kumpera + + * assembly.c (framework_assemblies): Add 3.5 assemblies. + + * domain-internals.h (MonoRuntimeInfo): Increase version_sets + by one to have room to remap 3.5 assemblies. + + * domain.c (supported_runtimes): Add 3.5 remapping information. + +2010-06-30 Rodrigo Kumpera + + * reflection.c (mono_image_create_token): Handle a + FieldBuilder from a different assembly. + + Fixes #611836. + +2010-06-30 Rodrigo Kumpera + + * verify.c (do_store_static_field): Improve error + message. + +2010-06-29 Rodrigo Kumpera + + * assembly.c: Revert r159692 since it breaks loading 3.5 + assemblies under 2.0. + +2010-06-29 Rodrigo Kumpera + + * icall.c (ves_icall_Type_make_array_type): Raise a TLE if a + TypedByRef is passed. + + * icall.c (ves_icall_Type_make_byref_type): Ditto. + + * icall.c (ves_icall_Type_MakePointerType): Ditto. + + Fixes #612780. + +2010-06-29 Rodrigo Kumpera + + * assembly.c: Add a few more assemblies to the list of framework + assemblies. + + Fixes #617714. + +2010-06-28 Zoltan Varga + + * class.c (mono_class_get_vtable_entry): Avoid a crash if mono_class_setup_vtable () + fails. + +2010-06-25 Mark Probst + + * class.c (mono_class_inflate_generic_method_full_checked): Added + a comment regarding a hack in mini-trampolines.c. + +2010-06-26 Zoltan Varga + + * sgen-gc.c (mono_gc_wbarrier_value_copy_bitmap): Use SIZEOF_VOID_P instead of + sizeof(SIZEOF_VOID_P) which is 4. + + * gc.c (mono_gc_init): Move the GC disabled check to *-gc.c. + +2010-06-25 Zoltan Varga + + * null-gc.c boehm-gc.c: Define the mono_gc_ pthread wrapper functions for these + GCs too. + + * *-gc.c (mono_gc_wbarrier_value_copy_bitmap): Implement this for all GCs. + + * sgen-gc.c (mono_gc_is_moving): New function returning whenever this GC can move + objects. + + * *-gc.c (mono_gc_set_desktop_mode): New function setting up the GC to work in + desktop mode. + +2010-06-25 Zoltan Varga + + * *-gc.c (mono_gc_get_description): New function returning a human readable + description of the current GC. + +2010-06-24 Miguel de Icaza + + * mono-hash.c: Moved here from mono/utils as this file is + GC-aware, and the utils directory is not. + +2010-06-23 Miguel de Icaza + + * Makefile.am: Add support for building a sgen-aware versions of + the libraries: libmonoruntimesgen.la libmonoruntimesgen-static.la, + they share all the components of the default, but use a differen + set of CFLAGS to enable SGEN instead. + + Put the BOEHM defines in the CFLAGS definition. + + * domain-internals.h (MonoJitInfo): this structure used to have + different sizes depending on the GC that was configured (Boehm vs + SGen). I have removed this difference for the sake of avoiding + the complexity of dealing with the mono/arch directory requiring + GC-specific changes to their Makefiles. + 2010-06-23 Mark Probst * sgen-gc.c, sgen-los.c, sgen-marksweep.c: Fix warnings.