From: Dick Porter Date: Tue, 12 Apr 2005 17:21:43 +0000 (-0000) Subject: 2005-04-12 Dick Porter X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=mono.git;a=commitdiff_plain;h=234225d112c4b018b8d1796f4c06a15812137500 2005-04-12 Dick Porter The daemon-less io-layer. Extensive lowlevel changes in handles.c, requiring some corresponding changes in other files calling these functions. Private_foo structures have been eliminated. File descriptor handling differences account for most of the changes in io.c and sockets.c. Other highlights: * mutexes.c: Named mutexes are now a distinct type. * atomic.h: Fix a PPC uninitialised variable warning. * wait.c: Check conditions before waiting on a condition * variable. * processes.c: Handle process fork and wait without a daemon (though this has the limitation of only being able to wait for child processes.) svn path=/trunk/mono/; revision=42844 --- 234225d112c4b018b8d1796f4c06a15812137500 diff --cc mono/io-layer/ChangeLog index 31f34abc7bb,31f34abc7bb..e2efd70f926 --- a/mono/io-layer/ChangeLog +++ b/mono/io-layer/ChangeLog @@@ -1,3 -1,3 +1,22 @@@ ++2005-04-12 Dick Porter ++ ++ The daemon-less io-layer. Extensive lowlevel changes in ++ handles.c, requiring some corresponding changes in other files ++ calling these functions. Private_foo structures have been ++ eliminated. ++ ++ File descriptor handling differences account for most of the ++ changes in io.c and sockets.c. ++ ++ Other highlights: ++ ++ * mutexes.c: Named mutexes are now a distinct type. ++ * atomic.h: Fix a PPC uninitialised variable warning. ++ * wait.c: Check conditions before waiting on a condition variable. ++ * processes.c: Handle process fork and wait without a daemon ++ (though this has the limitation of only being able to wait for ++ child processes.) ++ 2005-04-07 Gonzalo Paniagua Javier * io-private.h: