X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Futils%2FChangeLog;h=29ae70debdb3789b88d90b5cf25386e9b4563df1;hb=bf5947a0fd2b523c30833605ee69b2b041aa43f4;hp=02e4a17d835c460d54c8ffa7744424628530033c;hpb=393d8415e7a90a8ce6f06d584cfb34e243b06152;p=mono.git diff --git a/mono/utils/ChangeLog b/mono/utils/ChangeLog index 02e4a17d835..29ae70debdb 100644 --- a/mono/utils/ChangeLog +++ b/mono/utils/ChangeLog @@ -1,3 +1,118 @@ +2010-07-27 Geoff Norton + + * mono-sigcontext.h: Extend the macro's for darwin and linux + to expose r8-r11 as well. + +2010-07-16 Gonzalo Paniagua Javier + + * mono-semaphore.c: fixes bug #622398 for real in OSX. + This was preventing the WSQ from working. + +2010-07-02 Michael Hutchinson + + * mono-compiler.h: Add MONO_THREAD_VAR_OFFSET macro for s390x. + +2010-07-02 Michael Hutchinson + + * Makefile.am: Add mono-error.h to public headers. + * mono-error.h: Use public version of API. + +Wed Jun 30 12:06:33 CEST 2010 Paolo Molaro + + * mono-compiler.h: define MONO_LLVM_INTERNAL for internal functions + that may be needed by the llvm backend module. + +2010-06-25 Zoltan Varga + + * gc_wrapper.h: Avoid redefining pthread_ calls for SGEN, no longer needed. + + * gc_wrapper.h: Define the mono_gc_ wrappers for Boehm too, runtime code should + call these instead of the pthread_ variants. + +2010-06-22 Geoff Norton + + * mach-support-arm.c: Add arm support. + +2010-06-22 Geoff Norton + + * mach-support-*.(c|h): We cannot allocate from the gc, so make + these functions alloc-less. + +2010-06-22 Geoff Norton + + * Makefile.am + * mach-support-amd64.c + * mach-support-x86.c + * mach-support.c + * mach-support.h: Added a new suite of helpers for managing threads + on mach based kernels. + +2010-06-17 Geoff Norton + + * mono-sigcontext.h: Add arm variants. + +2010-05-29 Marek Habersack + + * mono-dl.c (mono_dl_build_path): modify the logic to try the + use the passed name to build the path without suffix on the first + run (handles situations like "somelib.so.1.0" -> + "libsomelib.so.1.0") and, on subsequent run, append the platform + suffix(es) (handles situations like "libsomething" -> + "libsomething.so"). Fixes bugs #588143 and #610009 + +2010-06-01 Geoff Norton + + * mono-poll.c: poll() is broken on osx in several cases, so we use a select + based mono_poll() instead. + +2010-05-12 Zoltan Varga + + * mono-sigcontext.h: Define UCONTEXT_REG_ constants for amd64 even if the gregs + array is available. + +2010-05-05 Jonathan Chambers + + * mono-semaphore.c: Implement alertable wait on Windows similar to + other platforms. Always be alertable, but only return from wait if + user requested alertable state. Fixes soft debugger on Windows. + +2010-04-23 Geoff Norton + + * mono-sigcontext.h: Darwin x86_64 support. + +2010-04-09 Gonzalo Paniagua Javier + + * mono-semaphore.c: account for the time already spent in wait if + interrupted. + +2010-04-09 Zoltan Varga + + * mono-time.c (get_boot_time): Applied more openbsd changes from Robert Nagy + . + +2010-04-09 Zoltan Varga + + * mono-proclib.c: Applied more openbsd changes from Robert Nagy + . + +2010-04-08 Gonzalo Paniagua Javier + + * mono-semaphore.c: set EINTR on windows too. + +2010-04-01 Gonzalo Paniagua Javier + + * mono-semaphore.c: patch from Robert Nagy that makes this work in + OpenBSD. + +2010-04-01 Gonzalo Paniagua Javier + + * mono-semaphore.[ch]: wait can be alertable now. Defaults to FALSE. + +2010-04-01 Sebastien Pouliot + + * mono-logger.c, mono-logger-internal.h: Add a new "security" + category to logging infrastructure. + 2010-03-31 Miguel de Icaza * mono-semaphore.h: Use Windows semaphores on Windows, patch