2004-08-28 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mono / utils / ChangeLog
index 6fd8c8fa6aad25a23f63dad9517121091f1aa708..f5f262987eb579b162d8f61a7c74c18d0c55b326 100644 (file)
@@ -1,3 +1,95 @@
+2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
+
+       * mono-logger.c (mono_trace_set_mask_string): Fix AOT tracing constant.
+
+2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
+
+       * mono-codeman.c (mono_code_manager_invalidate): Invalidate with
+       x86 break on AMD64 too.
+
+2004-07-23  zovarga  <vargaz@freemail.hu>
+
+       * monobitset.c (my_g_bit_nth_msf): Add workaround for glib 2.2 bug on
+       64 bit platforms.
+
+2004-07-09  Ben Maurer  <bmaurer@ximain.com>
+       
+       * mono-hash.c: register gc roots
+
+2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
+
+       * mono-logger.h mono-logger.c: Added AOT component.
+
+2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
+
+       * strtod.c: Use gint32 for 32 bit types.
+
+2004-06-29  Zoltan Varga  <vargaz@freemail.hu>
+
+       * mono-sha1.c: Use gint32 for 32 types. Fixes random memory corruption
+       in SHA1Transform on 64 bit systems.
+
+2004-06-24  David Waite  <mass@akuma.org>
+
+       * monobitset.c: change to C90-style comments from C99/C++-style 
+
+2004-06-21  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * mono-sha1.c : close opened file in case of successful read. This
+         saves a bunch of System.Reflection Emit failures under windows.
+
+2004-06-18  Jackson Harper  <jackson@ximian.com>
+
+       * mono-logger.c/h: Add a trace mask option for tracing loading
+       config files. A little white space love.
+       
+2004-06-18  Jackson Harper  <jackson@ximian.com>
+
+       * mono-logger.c: Change default logging level to ERROR. Make sure
+       that mono_trace_init is called if mono_tracev is our first trace
+       statement is mono_tracev. Little indentation fix.
+       
+2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
+
+       * mono-codeman.c (mono_code_manager_invalidate): On x86, fill the
+       memory with 0xcc (x86 break).
+
+2004-05-02  Miguel de Icaza  <miguel@ximian.com>
+
+       * mono-sha1.c: MacOS X defines "LITTLE_ENDIAN", you are supposed
+       to test against BYTE_ORDER, and this caused trouble.  We now use
+       G_BYTE_ORDER and G_LITTLE_ENDIAN.  This should fix the MacOS woes.
+
+2004-04-26  David Waite  <mass@akuma.org>
+
+       * mono-logger.h: remove comma from end of enumeration declaration
+
+Fri Apr 23 11:04:33 EDT 2004 Paolo Molaro <lupus@ximian.com>
+
+       * mono-codeman.c: macosx pretends an argument (which is ignored)
+       to be -1. Make sure the thunks area is zeroed.
+
+2004-03-11  Zoltan Varga  <vargaz@freemail.hu>
+
+       * monobitset.c (mono_bitset_test_bulk): New function to return multiple
+       bits at once.
+
+Thu Mar 4 15:46:20 PST 2004 Paolo Molaro <lupus@ximian.com>
+
+       * mono-codeman.c: add a define to force the use of malloc
+       instead of mmap.
+
+Tue Feb 17 21:45:12 CET 2004 Paolo Molaro <lupus@ximian.com>
+
+       * mono-codeman.c, mono-codeman.h: allocate extra room in memory close
+       to the native code for arch where calls have a limited immediate
+       displacement.
+
+Wed Feb 11 15:26:18 CET 2004 Paolo Molaro <lupus@ximian.com>
+
+       * Makefile.am, mono-codeman.h, mono-codeman.c: new support code
+       to deal with buffers of native code (handles exec bits and other
+       details).
 
 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>