X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fio-layer%2FChangeLog;h=19ee14aca039dc104ad188c86b5a91ab536ae3f9;hb=aae20b33d0f5235361bf19210c2a6f7d7ce88aa7;hp=43f7d05a51e5ff901d28fdfab572525e5e626d10;hpb=f3a7b5e02cd2abbe32485731de507f2938b5bfd6;p=mono.git diff --git a/mono/io-layer/ChangeLog b/mono/io-layer/ChangeLog index 43f7d05a51e..19ee14aca03 100644 --- a/mono/io-layer/ChangeLog +++ b/mono/io-layer/ChangeLog @@ -1,3 +1,67 @@ +2005-09-26 Sebastien Pouliot + + * io.c: Apply patch from #76192 (Can't write files past 2gb on AMD64 + (x86_64)) for Brion on IRC (Dick approved it). + +2005-09-23 Dick Porter + + * processes.c: Don't wait for processes that have already been + signalled; also fix typo. + + * handles.c: Improve locking inside new handle and handle + searching functions. + +2005-09-20 Dick Porter + + * collection.c: + * processes.c: Periodically waitpid for known process IDs. Fixes + bug 74870. + +2005-09-15 Gonzalo Paniagua Javier + + * io.c: + (CreateFile): if the file is a named pipe, treat the handle as a pipe, + not as a file. Fixes bug #76075. + +2005-08-27 Zoltan Varga + + * atomic.h: Add support for intel icc. + +2005-08-25 Zoltan Varga + + * io-layer.h: Include winbase.h not WinBase.h. + +2005-08-19 Dick Porter + + * threads.c, threads.h, thread-private.h: Use a gsize to store the + thread ID, so it can hold a 64 bit value if needed. + +2005-07-26 Gonzalo Paniagua Javier + + * error.c: map ENOENT to WSAECONNREFUSED. It might happen when + connecting to unix sockets. Closes bug #75632. + +2005-07-05 Dick Porter + + * io.c: Make sure SIGPIPE is ignored when calling write(2). + Prevents the runtime exiting when writing to a closed pipe, + fixing bug 75468. + +2005-06-30 Dick Porter + + * shared.c (_wapi_shm_semaphores_init): Add some helpful error + messages when semget () fails due to lack of resources. + +2005-06-21 Dick Porter + + * mutex-private.h: + * thread-private.h: + * mutexes.c: + * threads.c: Keep a list of owned mutexes in each thread handle, + so that it is easier to abandon them when the thread exits. + Removes a bottleneck when multiple threads are finishing in + parallel. + 2005-06-12 Gonzalo Paniagua Javier * io.c: (GetLogicalDrives) when a bogus line is read, don't leak memory.