X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fmetadata%2FChangeLog;h=76499be9aac77fdcfb1aba5ce777a03bf151119e;hb=227f2168ac4a61b617ecbf97caeaf37dd96e218a;hp=0fb5e2bc4ca7ea8f824d11ca6778311cf0724eff;hpb=ade27644b08039af632ae75503c714021aa2eb35;p=mono.git diff --git a/mono/metadata/ChangeLog b/mono/metadata/ChangeLog index 0fb5e2bc4ca..76499be9aac 100644 --- a/mono/metadata/ChangeLog +++ b/mono/metadata/ChangeLog @@ -1,3 +1,130 @@ +2004-08-06 Geoff Norton + + * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher + +2004-08-05 Sebastien Pouliot + + * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall + ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id. + * domain-internals.h: icall declaration. + * icall.c: icall registration. + * object-internals.h: New fields in MonoAssembly for CAS. + +2004-08-05 Duncan Mak + + * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to + CEE_LDELEM_ANY. + +Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro + + * reflection.c: fix to deal with object[] arrays in custom ctors + (bug #62550). + +2004-08-05 Martin Baulig + + * class.c (mono_class_array_element_size): Added support for + generic instances and correctly handle "recursive" types. + +2004-08-05 Zoltan Varga + + * assembly.c: Fix warnings. + +2004-08-04 Martin Baulig + + * class.c + (mono_type_get_name_recurse): Added `gboolean include_arity' + argument specifying whether or not we should include the generic + arity in the type name. + (_mono_type_get_name): New static function. + (mono_class_setup_vtable): If we're a generic instance, don't + include the generic arity in the names of explicit method + implementations. + +2004-08-03 Martin Baulig + + * class.c (mono_type_get_name_recurse): Enclose the generic type + arguments in `<', '>'. + +Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro + + * gc.c: make GC warning messages use the trace API, they are just + noise to most of the users. + +2004-08-03 Martin Baulig + + * debug-mono-symfile.c (read_string): Correctly read the string. + +2004-07-30 Zoltan Varga + + * marshal.c (signature_dup_add_this): Fix bug in previous patch. + + * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg + icalls. + (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods. + +2004-07-30 Martin Baulig + + * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c: + Reflect latest symbol writer changes. + +Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro + + * object.c: always create an object if null is passed + to Invoke() where a valuetype is expected. + +2004-07-29 Bernie Solomon + + * marshal.c (mono_marshal_init): make managed + signatures match native ones better for 64bits. + +2004-07-29 Gonzalo Paniagua Javier + + * appdomain.c: hack to build correctly the private bin path on windows. + Fixes bug #61991. + +2004-07-28 Lluis Sanchez Gual + + * assembly.c: Load mscorlib from the correct framework directory + (mono//mscorlib.dll). + * appdomain.h: Added prototypes for new functions. + * internals.h: Added some prototypes. + * domain.c: When initializing the runtime, get from the executable and + the configuration files the runtime version that the app supports. + Added support methods for reading app.exe.config. Added list of versions + supported by the JIT. Added two new methods: mono_init_from_assembly, + which initializes the runtime and determines the required version from + the provided exe file, and mono_init_version, which initializes + the runtime using the provided version. + * icall.c: Get machine.config from version-specific directory. + * reflection.c: When generating an image, embed the version number + of the current runtime. + +2004-07-28 Dick Porter + + * socket-io.c + (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check + returned sockaddr size before creating the remote address object. + Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug + 61608. + +2004-07-28 Dick Porter + + * locales.c (string_invariant_compare_char): Fix invariant char + compares between upper and lower cases. Fixes bug 61458. + +2004-07-27 Ben Maurer + + * marshal.c: actually cache stelem.ref wrappers. + +Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro + + * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image + sections and remove the mono_cli_rva_map () function. + +Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro + + * debug-mono-symfile.c: fix one more endianess issue, from a patch + by Geoff Norton (). Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro