Forgot ChangeLog
[mono.git] / mono / io-layer / ChangeLog
1 2009-05-20  Miguel de Icaza  <miguel@novell.com>
2
3         * versioninfo.c: Use the portable mono_map_ interface instead of
4         using mmap directly and change the style to the Mono style.
5
6         Remove more DEBUG/ifdefs combos
7
8         * shared.c: Split the code to make DISABLE_SHARED remove all the
9         code that does not use the shared handles.   Before it merely
10         removed some of it, with this we avoid hacks on platforms that can
11         not implement it.
12
13         Split the code to reduce the amount of ifdefs.
14
15         Remove #ifdef DEBUG from the source and use a macro instead.
16
17 2009-05-20  Miguel de Icaza  <miguel@novell.com>
18
19         * locking.c: Split locking code into a separate file.
20
21 2009-05-18  Miguel de Icaza  <miguel@novell.com>
22
23         * daemon.c: Move the compile check of MONO_SIZEOF_SUNPATH to the
24         file that uses it.
25
26         * Rename `threads.c' to `wthreads.c' as broken build systems are
27         not able to cope with two files with the same name across multiple
28         directories. 
29
30 2009-05-15  Geoff Norton  <gnorton@novell.com>
31
32         * handles.c: Don't start the collection thread if we've disabled
33         shared handles.
34
35 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
36
37         * collection.c (collection_thread): Get rid of all the ifdefs and
38         gcc attributes, simply return NULL.
39
40 2009-05-11  Zoltan Varga  <vargaz@gmail.com>
41
42         * shared.c: Applied patch from Koushik K. Dutta (koush@koushikdutta.com).
43         Fix the build on android.
44
45 2009-05-09  Miguel de Icaza  <miguel@novell.com>
46
47         * messages.c: Split the scan into common and uncommon messages to
48         allow the messages that are not produced by Mono to be removed on
49         embedded scenarios.
50         
51         * messages.c (message_string): instead of having a gigantic switch
52         table, use a sorted structure in memory and do a binary search on
53         it.
54
55         This reduces the runtime size by 49k and the debugging symbols by
56         400k.
57
58 2009-04-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
59
60         * sockets.c: don't display a warning when connect() fails because the
61         socket was closed in another thread.
62
63 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
64
65         * shared.c: Fix a bunch of memleaks.
66
67 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
68
69         * threads.h: Add a comment to CreateThread.
70
71 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
72
73         * threads.c handles.c wait.c: Change location of gc_wrapper.h.
74
75 2009-02-22  Robert Jordan  <robertj@gmx.net>
76
77         * sockets.c: implement WSASend/WSARecv using sendmsg/recvmsg.
78         Fixes #470021.
79
80         Code is contributed under MIT/X11 license.
81
82 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
83
84         * events.c: fix event_signal and namedevent_signal to actually signal
85         the handle.
86
87 2009-02-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
88
89         * io.c: EXDEV when moving directories fails now without creating a
90         file in the destination.
91         Fixes bug #326983.
92
93 2009-02-09  Zoltan Varga  <vargaz@gmail.com>
94
95         * wait.c (WaitForMultipleObjectsEx): Initialize poll variable.
96
97 2009-02-05  Miguel De Icaza  <miguel@novell.com>
98
99         * sockets.c (_wapi_setsockopt): SO_REUSEPORT is needed also on
100         MacOS X.  Fixes bug #471292
101
102 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
103
104         * shared.c: Fall back to file based shared storage if shm_open () fails
105         because /dev/shm is not mounted.
106         
107         * shared.c: Add an alternative implementation using shared memory instead of
108         files. This fixes problems where the mono process would spin up the disk
109         every x secs on laptops. Fixes #434566, #415373 and #321949.
110
111 2009-01-16  Miguel de Icaza  <miguel@novell.com>
112
113         * sockets.c (WSASend): Fix memory leak, and optimize for the case
114         with 1 segment. 
115
116         This should really use writev or sendmsg to use the kernel
117         scatter/gather facility instead of emulating it by copying buffers.
118
119 2009-01-26  Rodrigo Kumpera  <rkumpera@novell.com>
120
121         * critical-sections.h (Enter/LeaveCriticalSection): Show
122         helpfull warning messages before crashing.
123
124 2009-01-26  Rodrigo Kumpera  <rkumpera@novell.com>
125
126         * handles-private.h (_wapi_handle_set_signal_state): Show
127         helpfull warning messages before crashing.
128
129 2009-01-26  Jeffrey Stedfast  <fejj@novell.com>
130
131         * mono-mutex.[c,h]: Removed GPLv2 copyright notice which should
132         not have been there.
133
134 2009-01-20  Rodrigo Kumpera  <rkumpera@novell.com>
135
136         * threads.c: Add wapi_current_thread_desc that produces
137         a string representation of the current thread state.
138
139         * threads.h: Export wapi_current_thread_desc.
140
141 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
142
143         * io.c (GetDiskFreeSpaceEx): Applied patch from Koushik Dutta
144         (koush@koushikdutta.com). Disable this on android.
145
146 2009-01-16  Rodrigo Kumpera  <rkumpera@novell.com>
147
148         * handles.c (_wapi_handle_timedwait_signal_handle): Don't use the
149         set_wait_handle/clear_wait_handle machinery for alertable waits in
150         case of non-alertable waits.
151
152         Non-alertable waits must continue and wait on the cond as this will
153         release the lock. Otherwise this will cause a deadlock as anyone trying
154         to pulse the cond will block trying to acquire the said lock because
155         the thread in non-alertable wait will be busy looping in WaitForSingleObjectEx
156         or similar function, never releasing the lock.
157
158         Thou this fixes quite a few of the hangs introduced by non-pooling alertable
159         waits, the long term plan is to verify if all non-alertable waits really need
160         to be as such.
161
162 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
163
164         * handles-private.h (_wapi_handle_set_signal_state): Set the signalled state
165         of the handle while locking the global signal cond mutex.
166
167         * wait.c (WaitForMultipleObjectsEx): Check the signalled state of handles
168         inside the critical section before waiting, otherwise we could go to waiting
169         even when the handles are already signalled.
170
171 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
172
173         Reapply r122913, this time handling processes by falling back to polling.
174         
175         * handles.c: Rework the way the global signal stuff is handled: instead of
176         allocating a separate mutex/condvar pair for it, allocate a normal handle.
177         This way, it can reuse the alertable waiting code, allowing 
178         WaitForMultipleObject to work without polling.
179
180 2009-01-09  Miguel de Icaza  <miguel@novell.com>
181
182         Incorporate a few patches from Paolo, slightly modified:        
183
184         * handles.c (_wapi_handle_check_share): On non-Linux systems, do
185         not even compile in the code that scans for /proc/fd, and go
186         directly to the fallback function.
187
188 2009-01-09  Paolo Molaro (lupus@ximian.com)
189
190         * handles.c: Do not include some header files in platforms that
191         lack it.
192
193 2009-01-09  Miguel de Icaza  <miguel@novell.com>
194
195         * messages.c: Eliminate a warning.
196         
197 2009-01-09  Paolo Molaro (lupus@ximian.com)
198
199         * error.c: On some platforms that do not define these variables,
200         do not use them.
201
202         * security.c, io-private.h: Only include some headers if they
203         exist on the system
204
205         * sockets.c, sockets.h: do not import on this header files that
206         are only consumed internally in sockets.c.
207
208 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
209
210         * threads.c (_wapi_thread_apc_pending): Check for thread->wait_handle ==
211         INTERRUPTION_REQUESTED_HANDLE too.
212         (wapi_interrupt_thread): Rework the comments, the thread is no longer
213         required to call QueueUserAPC to make the wait functions return.
214
215         * threads.c handles.c threads-internal.h: Implement alertable waits without
216         polling.
217
218 2009-01-08  Geoff Norton  <gnorton@novell.com>
219
220         * processes.c: Fix the osx version check to properly detect 10.5 v 10.4
221
222 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
223
224         * types.h: added WapiULargeInteger.
225
226         * uglify.h: added ULARGE_INTEGER, PULARGE_INTEGER.
227
228         * io.h: added WapiDriveType, added method declarations
229         for GetDiskFreeSpaceEx and GetDriveType
230
231         * io.c: added GetDiskFreeSpaceEx() to query disk size
232         and free space via statvfs or statfs system call.
233         added GetDriveType to query drive type via /etc/mtab or /etc/mnttab.
234
235 2009-01-07  Geoff Norton  <gnorton@novell.com>
236
237         * processes.c: Properly implement support for Process.Modules on OSX.
238         Fixes OSX on nunit 2.4
239
240 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
241
242         * io.c (GetCurrentDirectory): Avoid calling g_get_current_dir straight
243         away as it doesn't handle ENAMETOOLONG correctly. As a bonus we avoid
244         allocating memory in the common path.
245
246 2009-01-07  Geoff Norton  <gnorton@novell.com>
247
248         * processes.c: Only use open -W on OSX 10.5+.  Patch from
249         Miguel
250
251 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
252
253         * processes.c (get_module_name) : adjust size for unicode characters.
254
255         Code is contributed under MIT/X11 license.
256
257 2008-11-21  Zoltan Varga  <vargaz@gmail.com>
258
259         * atomic.h: Applied patch from Mihai Chelaru <kefren@ngnetworks.ro>. Add
260         netbsd support.
261
262 2008-11-18  Mark Probst  <mark.probst@gmail.com>
263
264         * atomic.h: InterlockedExchangePointer and
265         InterlockedCompareExchangePointer for PPC64.
266
267         Code submitted by andreas.faerber@web.de at
268         https://bugzilla.novell.com/show_bug.cgi?id=324134 under the
269         X11/MIT license.
270
271 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
272
273         * wait.h : Adding method declaration for WaitForInputIdle.
274
275         * wait.c : Adding implementation for WaitForInputIdle.
276
277         Code is contributed under MIT/X11 license.
278
279 Fri Oct 17 15:23:00 CEST 2008 Paolo Molaro <lupus@ximian.com>
280
281         * processes.c: patch from Geoff Norton (gnorton@novell.com) to
282         strdup the open program on OSX (bug #431811).
283
284 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
285
286         * versioninfo.c: remove the use of g_strdown.
287
288 2008-09-25  Dick Porter  <dick@ximian.com>
289
290         * wait.c: Make sure we keep references to handles we're waiting
291         for.  Fixes bug 424851.
292
293 2008-07-29  Dick Porter  <dick@ximian.com>
294
295         * processes.c (get_module_name): Make a last-ditch effort to
296         figure out the process name.  Fixes bug 413723, patch by Casey
297         Marshall <casey.s.marshall@gmail.com>
298
299 2008-07-28  Dick Porter  <dick@ximian.com>
300
301         * handles.c (_wapi_handle_count_signalled_handles): Remove an
302         unmatched _wapi_handle_ref().  Fixes bug 410743.
303
304 2008-07-15  Rodrigo Kumpera  <rkumpera@novell.com>
305
306         * versioninfo.c (map_pe_file): Fix memory leak.
307
308 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
309
310         * process-private.h (_WAPI_PROCESS_UNHANDLED_PID_MASK): Fix the amd64 build.
311
312 2008-06-27  Dick Porter  <dick@ximian.com>
313
314         * processes.c: Implement a form of process pseudo-handle to allow
315         non-mono processes to be manipulated.  Fixes bug 313231.
316
317         * wait.c: Check for process pseudo-handles and fail if an attempt
318         is made to wait on one.
319
320 2008-06-19  Dick Porter  <dick@ximian.com>
321
322         * sockets.c: Implement WSASend() and WSAReceive().
323
324 2008-06-02  Dick Porter  <dick@ximian.com>
325
326         * wapi.h: 
327         * Makefile.am: 
328         * messages.h: 
329         * messages.c: Implement FormatMessage, fixes bug 321827.
330
331 2008-05-29  Dick Porter  <dick@ximian.com>
332
333         * sockets.c (socket_close): Clear any saved errors
334         (_wapi_connect): Don't save EWOULDBLOCK errors here, as that
335         breaks async connects.  (Bug 377589 test case broken by the
336         previous fix to bug 356552)
337
338 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
339
340         * thread-private.h (struct _WapiHandle_thread): Remove 'owner_pid' field. Reorder
341         fields so this struct (which is the biggest of the handle structs) takes less
342         space.
343
344         * threads.c (QueueUserAPC): Make this function signal safe by adding some
345         restrictions on its usage.
346
347 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
348
349         * mono-mutex.h: Get rid of the #ifdef __cplusplus defines, use G_BEGIN_DECLS
350         /G_END_DECLS.
351
352 2008-05-07  Dick Porter  <dick@ximian.com>
353
354         * io.c (FindNextFile): Handle symlinks correctly.  Fixes bug
355         385765.
356
357 2008-04-25  Zoltan Varga  <vargaz@gmail.com>
358
359         * handles.c (_wapi_handle_check_share): Fix a crash introduced by the lazy
360         creation of wapi handle slots.
361
362 2008-04-24  Zoltan Varga  <vargaz@gmail.com>
363
364         * handles.c (shared_init): Align _wapi_fd_reserve to a multiple of 
365         _WAPI_HANDLE_INITIAL_COUNT to avoid a problem when allocating handles.
366
367 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
368
369         * handles.c: Initialize the handle array entries on demand to save memory.
370
371         * wapi-private.h (_WAPI_HANDLE_INITIAL_COUNT): Decrease this to 256 to save
372         memory.
373
374         * handles-private.h (_WAPI_PRIVATE_MAX_SLOTS): Increase this to 1024*16 to
375         compensate for the decrease in _WAPI_HANDLE_INITIAL_COUNT.
376         
377         * threads.c: Use #ifdef instead of #if for checking for valgrind/memcheck.h.
378
379 2008-04-22  Dick Porter  <dick@ximian.com>
380
381         * wapi_glob.c (globextend): Comment out the code using ARG_MAX, as
382         that is broken on the latest opensuse.
383
384 2008-04-21  Dick Porter  <dick@ximian.com>
385
386         * io.c (DeleteFile): Disable for now the bug fix for 323389, it's
387         breaking too much other stuff.
388
389 2008-04-20  Geoff Norton  <gnorton@novell.com>
390
391         * processes.c: Fix the _NSGetEnviron define to prevent an impropoer
392         pointer dereference.
393
394 2008-04-18  Miguel de Icaza  <miguel@novell.com>
395
396         * Applied patch from Dick Porter from bug #380649
397
398 2008-04-17  Dick Porter  <dick@ximian.com>
399
400         * io.c (DeleteFile): Check file shares before deleting a file.
401         Fixes bug 323389.
402
403 2008-04-17  Dick Porter  <dick@ximian.com>
404
405         * io.c (DeleteFile): Return ERROR_ACCESS_DENIED if the file is
406         readonly.  Fixes bug 378229.
407
408 2008-04-11  Geoff Norton  <gnorton@novell.com>
409
410         * processes.c: The global extern environ doesn't exist on Mac.  We
411         need to call NSGetEnviron instead.
412
413 2008-04-08  Dick Porter  <dick@ximian.com>
414
415         * processes.c (CreateProcess): Improve the managed binary support,
416         so it works when the executable is passed in as the appname.
417         Fixes bug 377815.
418
419 2008-04-04  Dick Porter  <dick@ximian.com>
420
421         * io.c (MoveFile): Check file shares before moving a file.  Fixes
422         bug 377049.
423
424 2008-04-04  Dick Porter  <dick@ximian.com>
425
426         * error.c (errno_to_WSA): handle ENODEV.  Fixes the reopened part
427         of bug 324035.
428
429 2008-04-04  Dick Porter  <dick@ximian.com>
430
431         * processes.c (GetModuleInformation): 
432         * versioninfo.h: 
433         * versioninfo.c: 64bit fixes
434
435 2008-04-03  Dick Porter  <dick@ximian.com>
436
437         * io-portability.c (_wapi_basename, _wapi_dirname): Only turn \
438         into / when MONO_IOMAP is in effect.  Fixes bug 346123.
439
440 2008-04-03  Dick Porter  <dick@ximian.com>
441
442         * timefuncs.c (GetTickCount): Use mono_msec_ticks(), see bug
443         347476.
444
445 2008-04-01  Dick Porter  <dick@ximian.com>
446
447         * versioninfo.c (get_string_block): Refine the fix for bug 354856
448         (r93661) so that it also fixes the new part of bug 374600.
449
450 2008-03-28  Dick Porter  <dick@ximian.com>
451
452         * processes.c (GetExitCodeProcess): Check if a process has exited
453         and recorded it's exit code, before seeing if the process is
454         signalled.  Fixes bug 325463.
455
456 2008-03-27  Dick Porter  <dick@ximian.com>
457
458         * processes.c (match_procname_to_modulename): Check the whole
459         process name first, in case it is recorded as an absolute path.
460         Fixes bug 360348.
461
462 2008-03-27  Dick Porter  <dick@ximian.com>
463
464         * processes.c (ShellExecuteEx): Grotty kludge to work around
465         unpleasant feature in g_shell_parse_argv() where it treats '#'
466         embedded in a filename as a comment marker, and throws away the
467         rest of the line.  When we're directly opening URLs quote the
468         filename, to avoid this.  Fixes bug 371567.
469
470 2008-03-25  Dick Porter  <dick@ximian.com>
471
472         * wapi-private.h (_WAPI_HANDLE_VERSION): Increment file layout
473         version
474
475         * threads.c: Make thread handles private to the process that owns
476         them.
477
478 2008-03-22  Kornél Pál  <kornelpal@gmail.com>
479
480         * io-layer.h: Windows: Rename GetProcessId to __GetProcessId for targets not
481         supporting it. This fixes MSVC build with new Windows SDKs that declare
482         GetProcessId unconditionally.
483
484 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
485
486         * io-layer.h: Removed Windows version macros.
487
488 Thu Mar 13 16:24:53 CET 2008 Paolo Molaro <lupus@ximian.com>
489
490         * processes.c: properly check for executable files (fixes bug #368829).
491
492 2008-02-05  Dick Porter  <dick@ximian.com>
493
494         * versioninfo.c (VerLanguageName): Implement VerLanguageName.
495
496 2008-01-31  Bill Holmes  <billholmes54@gmail.com>
497         * processes.c (match_procname_to_modulename) : Added to check if the last 
498           part of module name is equal to the process name.
499
500         * processes.c (EnumProcessModules) : Changed the first entry in the returned 
501           modules array (the process module) to be populated from the entry found
502           in /proc/<PID>/maps.
503
504         * processes.c (get_module_name & GetModuleInformation) : In the case where 
505           the module passed in is NULL, search the /proc/<PID>/maps for a name that
506           matches the process name to populate the return information.
507
508         Fixes #357062
509
510 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
511
512         * security.c (RevertToSelf): Make this return TRUE if impersonating is not
513         supported.
514
515         * sockets.c (_wapi_connect): Add a workaround to a solaris x86 problem where
516         getsockopt (SO_ERROR) doesn't return an error code after connect () fails. Fixes
517         #356552.
518
519 2008-01-23  Dick Porter  <dick@ximian.com>
520
521         * versioninfo.c (get_string_block): When stepping over the
522         StringTable block, do not read an extra block at the end.  Fixes
523         the new part of bug 354856.
524
525 2008-01-19  Dick Porter  <dick@ximian.com>
526
527         * versioninfo.c (get_stringtable_block): Cope when the StringTable
528         block is first in the resources data, and we just need to step
529         over it.  Fixes bug 354856.
530
531 2008-01-16  Dick Porter  <dick@ximian.com>
532
533         * threads.c (_wapi_thread_set_termination_details): Move the
534         thread abandonment to outside the shared handle lock.  Fixes bug
535         349680.
536
537 2008-01-16  Dick Porter  <dick@ximian.com>
538
539         * versioninfo.c (VerQueryValue): Include trailing null in returned
540         string length, for MS compatibility.
541
542 2008-01-09  Dick Porter  <dick@ximian.com>
543
544         * versioninfo.c (get_ptr_from_rva, scan_resource_dir): Make it
545         work on big-endian systems.
546         (scan_resource_dir): Copy the resource directory entry and
547         byteswap if necessary so it works big-endian.  This fixes bug
548         345972 for real this time.
549         (VerQueryValue): String values set the length to the number of
550         unicode chars, but the data length reported was already correct so
551         don't halve it again.  Fixes the previous fix for bug 345972.
552         (GetFileVersionInfo): On big-endian systems, scan the resource
553         data and turn all unicode strings into UTF-16BE.  FileVersionInfo
554         now works big-endian.
555
556 2008-01-04  Dick Porter  <dick@ximian.com>
557
558         * versioninfo.c (VerQueryValue): Returned buffer length counts
559         chars not bytes for string data.  Fixes bug 345972 again.
560         (get_enclosing_section_header): Make sure values read are treated
561         as LE.  Fixes crash on ppc reported in bug 345972.
562
563 2007-12-17  Mark Probst  <mark.probst@gmail.com>
564
565         * threads.c: Guard against a race condition involving
566         thread_hash_key that can occur during shutdown.
567
568 2007-12-08  Zoltan Varga  <vargaz@gmail.com>
569
570         * processes.c: Include sys/mkdev.h if exists. Fixes solaris x86 build.
571
572 2007-12-06  Dick Porter  <dick@ximian.com>
573
574         * versioninfo.c: Resource language values must be compared in a
575         'case'-insensitive manner.  Fixes bug 345972.
576
577 2007-12-05  Dick Porter  <dick@ximian.com>
578
579         * io.c (CreateFile): Create files with mode 0666 (&~umask) by
580         default.  Fixes bugs 325299 and 337040.
581
582 2007-11-22  Dick Porter  <dick@ximian.com>
583
584         * critical-sections.h (EnterCriticalSection): Reinstate the
585         asserts in the devel branch, so any problems aren't obscured.
586
587 2007-11-22  Dick Porter  <dick@ximian.com>
588
589         * versioninfo.c (find_pe_file_resources): Make it work on 64bit
590         systems.  Fixes bug 343353.
591
592 2007-11-21  Dick Porter  <dick@ximian.com>
593
594         * processes.c (load_modules): Rewrite based on the libgc
595         /proc/<pid>/maps parsing to avoid using glib functions only
596         available since 2004.
597         (load_modules): Check for duplicates before adding a module to the
598         list.
599
600 2007-11-15  Dick Porter  <dick@ximian.com>
601
602         * processes.c (load_modules): Don't bother if we don't have
603         g_strsplit_set() and g_strv_length().  Allows building against old
604         glib versions.
605         (EnumProcessModules): Don't miss the first module returned by
606         load_modules().
607
608 2007-11-15  Dick Porter  <dick@ximian.com>
609
610         * processes.c: Implement process module support by reading from
611         /proc if it's available.
612
613         * versioninfo.h: 
614         * versioninfo.c: New functions to implement PE file version info
615         support.
616
617 2007-11-08  Dick Porter  <dick@ximian.com>
618
619         * critical-sections.h (EnterCriticalSection): Disable the critical
620         section asserts for the release branch
621
622 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
623
624         * io-layer.h: Added includes for run-time GetProcessId API detection for
625         Windows.
626
627 2007-10-26  Dick Porter  <dick@ximian.com>
628
629         * shared.c (_wapi_shm_file_open): Set the umask when opening
630         shared files, so restrictive defaults don't prevent subsequent
631         processes re-opening them.
632
633 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
634
635         * atomic.h (InterlockedCompareExchange): Fix the ia64 version so it works for
636         negative values too. Hopefully fixes #332700.
637
638 2007-09-26  Dick Porter  <dick@ximian.com>
639
640         * io-portability.c (_wapi_io_scandir): Only update the error
641         status of glob() when performing a secondary glob() if the first
642         returned an error.  Fixes bug 325107.
643
644 2007-09-12  Marek Habersack  <mhabersack@novell.com>
645
646         * io-portability.c: options_init moved to
647         utils/mono-io-portability.c
648         Do not initialize portability helpers here, it's done in
649         mono_runtime_init.
650         find_file and find_in_dir moved to utils/mono-io-portability.c
651
652 2007-09-09  Robert Jordan  <robertj@gmx.net>
653
654         * sockets.c (_wapi_setsockopt): Add support for FreeBSD multicast
655         sockets. Fixes #81891.
656         Code is contributed under MIT/X11 license.
657
658 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
659
660         * processes.h, processes.c : ok, they are simple string.
661
662 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
663
664         * processes.h : sigh, I really hate fixing them on windows :(
665
666 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
667
668         * processes.c : fix build again.
669
670 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
671
672         * processes.h : removed extra parameters from CreateProcessWithLogonW.
673
674 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
675
676         * processes.c, processes.h: added CreateProcessWithLogonW(). For now
677           it just calls CreateProcess().
678         * io-layer.h : CreateProcessWithLogonW() requires WINVER 0x0500
679           on Windows.
680
681 2007-08-23  Robert Jordan  <robertj@gmx.net>
682
683         * processes.[c|h]: Implement Get|SetPriorityClass ().
684         Code is contributed under MIT/X11 license.
685
686 Tue Aug 21 20:08:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
687
688         * io.c: made convert_arg_to_utf8() and write_file() static.
689         Worked around gcc's incorrect warning.
690
691 2007-08-20  William Holmes  <billholmes54@gmail.com>
692
693         *io.c: Added implementation for ReplaceFile.
694         *io.h: Added deceleration for ReplaceFile method.
695
696         Code is contributed under MIT/X11 license.
697
698 2007-08-20  Wade Berrier  <wberrier@novell.com>
699
700         * processes.c: include sys/resource.h for rusage to fix 
701         mac 10.3 build
702
703 Mon Aug 20 12:36:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
704
705         * processes.c: implemented query for user/system times using
706         getrusage ().
707
708 2007-08-10  Dick Porter  <dick@ximian.com>
709
710         * sockets.c (_wapi_getsockopt, _wapi_setsockopt): Check the option
711         level as well as the name when mangling some of the values.  Fixes
712         bug 82000.
713
714 2007-08-02  Dick Porter  <dick@ximian.com>
715
716         * sockets.c: Changes in error handling, and move the SO_REUSEADDR
717         setting from metadata/socket-io.c.
718
719 2007-08-01  Dick Porter  <dick@ximian.com>
720
721         * io-portability.c (_wapi_io_scandir): Special-case patterns
722         ending in '.*' so that files with no extension are also matched.
723         Fixes bug 82212.
724
725         * wapi_glob.h: 
726         * wapi_glob.c: Reinstate WAPI_GLOB_APPEND, and add
727         WAPI_GLOB_UNIQUE to avoid matching the same entry twice when
728         appending.
729
730 2007-07-26  Dick Porter  <dick@ximian.com>
731
732         * handles-private.h: 
733         * thread-private.h: 
734         * handles.h: 
735         * critical-sections.c: 
736         * handles.c: 
737         * critical-section-private.h:
738         * error.h: 
739         * threads.c: 
740         * error.c: Clean up TLS and pthreads structures.  Finishes off bug
741         78739.
742
743         * collection.c (collection_thread): Exit the collection thread if
744         the io-layer has been cleaned up.
745
746         * mono-mutex.h (mono_mutexattr_destroy): Add this define too
747
748 Mon Jul 23 10:40:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
749
750         * timefuncs.c: make TickCount measure from boot time if it's
751         available.
752
753 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
754
755         * io.c (MoveFile): Fix a leak. 
756
757 Fri Jul 13 12:46:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
758
759         * handles-private.h, handles.c, thread-private.h, threads.c,
760         uglify.h, wait.c: temporarily revert the alertable wait changes
761         (r79386) until the deadlock issues are fixed.
762
763 2007-06-22  Dick Porter  <dick@ximian.com>
764
765         * shared.c: The non-shared mutexes weren't being initialised properly
766         on macos.  Fixes bug 81929.
767
768 2007-06-13  Randolph Chung  <tausq@debian.org>
769
770         * atomic.h: Enable for all hppa targets.
771         * Makefile.am: rename hppa_atomic.s to hppa_atomic.S so the preprocessor
772         can handle the file.
773         * hppa_atomic.s: Renamed to ...
774         * hppa_atomic.S: ... and updated to work on both HPUX and Linux.
775
776 2007-06-13  Dick Porter  <dick@ximian.com>
777
778         * handles.c (timedwait_signal_wait_cond): Alertable waits on
779         private handles are now interrupted by signalling the same
780         condition that would end the wait if the handle became signalled,
781         rather than polling.  (Shared handles still have to poll.)
782
783         * threads.c (_wapi_thread_queue_apc): Interrupt the thread if it's
784         waiting on a handle
785
786         * handles-private.h (_wapi_handle_current_thread_set_waiting_on):
787         Helper functions to inform the APC queuing functions when threads
788         are waiting for handles, and to interrupt the wait.
789
790         * wait.c (WaitForMultipleObjectsEx): Need to tell the handle
791         waiting functions if any of the handles in question are shared
792
793 2007-06-06  Miguel de Icaza  <miguel@novell.com>
794
795         * processes.c (is_managed_binary): Fix for OSX.
796
797 2007-06-06  Wade Berrier  <wberrier@novell.com>
798
799         * atomic.h (InterlockedExchangePointer): cast to pointer to to silence
800         compiler warnings (autobuild fails the build on this type of warning)
801
802 2007-05-21  Dick Porter  <dick@ximian.com>
803
804         * io-portability.c (_wapi_g_dir_open): Don't propagate any errors
805         from the second call to g_dir_open, preserve the original error if
806         the second call still fails but clear the error if it succeeds.
807
808 2007-05-10  Dick Porter  <dick@ximian.com>
809
810         * sockets.c (_wapi_recvfrom): Refine the fix to bug 75705 so EINTR
811         isn't returned if the remote end shuts down cleanly.  Fixes zmd
812         and the second example in bug 75705.
813
814 2007-04-26  Dick Porter  <dick@ximian.com>
815
816         * shared.c (_wapi_shm_semaphores_init): Need to check
817         MONO_DISABLE_SHM in this entry point, as it's called before
818         _wapi_shm_attach().  Fixes bug 81436.
819
820 2007-04-24  Dick Porter  <dick@ximian.com>
821
822         * sockets.c (_wapi_recvfrom, socket_close): Force recvfrom() to
823         error if the socket is closed while the receive is blocking.
824         Fixes bug 75705.
825
826 2007-04-13  Dick Porter  <dick@ximian.com>
827
828         * shared.h:
829         * shared.c: Complete the reimplementation of disabling of shared
830         memory, by not allocating sysv semaphores when shm disabling has
831         been requested (either at compile time or run time.)
832
833         * processes.c (CreateProcess): Don't synchronize locking across
834         processes when forking, when shared memory has been disabled.
835
836 2007-04-06  Andreas Faerber  <andreas.faerber@web.de>
837
838         * wapi_glob.h:
839         * wapi_glob.c: remove reference to sys/cdefs.h, use glib instead.
840         Fixes: 81326
841
842 2007-04-05  Dick Porter  <dick@ximian.com>
843
844         * io.c:
845         * io-portability.c (_wapi_io_scandir): Moved from io.c, and
846         changed to use a cut-down version of glob(3) that has been
847         extended to match with case-insensitivity if needed.
848
849         * wapi_glob.h:
850         * wapi_glob.c: Cut down implementation of glob(3), based on
851         OpenBSD.
852
853 2007-03-22  Dick Porter  <dick@ximian.com>
854
855         * sockets.c (_wapi_connect): Do additional checks when connect(2)
856         fails, because some systems don't let it be restarted.  Patch
857         based on one submitted by Robert S Wojciechowski <robertw@ssgx.com>,
858         fixes bug 81010.
859
860 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
861
862         * io-layer.h:  Remove UNICODE and _UNICODE defines as 
863         these are done by configure.in now.
864         
865         Code is contributed under MIT/X11 license.
866         
867 Thu Mar 8 19:42:17 CET 2007 Paolo Molaro <lupus@ximian.com>
868
869         * shared.c: partial support for MONO_DISABLE_SHM env var.
870
871 2007-03-05  Wade Berrier  <wberrier@novell.com>
872
873         * atomic.h: atomic fixes from Michael Matz for for s390 
874         and s390x ( bnc #237611 and bxc #80892 )
875
876 2007-03-05  Miguel de Icaza  <miguel@novell.com>
877
878         * io.c (CreateFile): Use FILE_ATTRIBUTE_TEMPORARY to mean 0600
879         permissions.  For 80688
880
881         (MoveFile): Use errno_copy here, just to avoid a potential
882         errno-changing code in the future from g_free. 
883         
884         Also, ignore EXDEV errors as they are handled immediately after
885         (avoid printing out an error). 
886
887         Fixes: 80655
888
889 Mon Feb 12 15:50:24 CET 2007 Paolo Molaro <lupus@ximian.com>
890
891         * shared.c: exit if semaphores can't be created (bug #80616).
892
893 2007-02-01  Geoff Norton  <gnorton@customerdna.com>
894
895         * collection.c: NetBSD doesn't define PTHREAD_STACK_MIN.
896
897 2007-01-26  Dick Porter  <dick@ximian.com>
898
899         * socket-private.h: 
900         * sockets.c (_wapi_getsockopt): Windows seems to not reset
901         SO_ERROR values when they're read, contrary to the documentation.
902         Fixes the new issues raised in bug 79878 (example in C showing
903         winsock behaviour attached to that bug.)
904
905 2007-01-15 Mark Mason <mason@broadcom.com
906
907         * atomic.h: add locking primitives for MIPS.
908         
909 2007-01-11  Dick Porter  <dick@ximian.com>
910
911         * sockets.c (_wapi_connect): Don't do the SO_BROADCAST setting
912         here, do it in managed code instead.
913         (_wapi_getsockopt): SO_RCVTIMEO and SO_SNDTIMEO use struct
914         timeval, which has a microsecond field, not milliseconds.
915         (_wapi_setsockopt): ditto.
916         (_wapi_setsockopt): Halve the SO_SNDBUF and SO_RCVBUF values on
917         Linux, as the kernel doubles whatever we set.
918         (_wapi_socket): Save socket domain, type and protocol so it can be
919         duplicated later.
920         (socket_disconnect): Implement socket disconnect (closing the
921         socket, but keeping the file descriptor.)
922         (wapi_disconnectex): A basic implementation of DisconnectEx().
923         (wapi_transmitfile): A very basic implementation of
924         TransmitFile().
925         (WSAIoctl): Implement the SIO_GET_EXTENSION_FUNCTION_POINTER
926         ioctl.
927
928         * socket-private.h (struct _WapiHandle_socket): Record socket
929         domain, type and protocol info so it can be duplicated later.
930
931         * sockets.h (WSAID_DISCONNECTEX,WSAID_TRANSMITFILE): Structures
932         and defines needed to look up the DisconnectEx() and
933         TransmitFile() functions by GUID.
934
935         * error.c (errno_to_WSA): Change ETIMEDOUT mapping to
936         WSAETIMEDOUT; add EDESTADDRREQ.
937
938         * io-layer.h: Need mswsock.h on windows now.
939
940 2007-01-04  Miguel de Icaza  <miguel@novell.com>
941
942         * io-portability.c (find_file): Fix a coverity warning (scanning
943         being unassigned).   
944
945 2006-12-31  Miguel de Icaza  <miguel@novell.com>
946
947         * io-portability.c (find_file): Do not abort if an empty filename
948         has been passed.  This fixes the case where MONO_IOMAP=all would
949         assert if Directory.Exists ("") was called.
950
951 Mon Dec 18 14:54:37 CET 2006 Paolo Molaro <lupus@ximian.com>
952
953         * processes.c: moved a free on the error path.
954
955 Thu Dec 14 21:42:39 CET 2006 Paolo Molaro <lupus@ximian.com>
956
957         * processes.c: fixed a few memory leaks when executing
958         processes.
959
960 Mon Nov 27 13:12:17 GMT 2006 Paolo Molaro <lupus@ximian.com>
961
962         * atomic.h: fix arm compare and exchange (bug #78500).
963
964 2006-11-23  Dick Porter  <dick@ximian.com>
965
966         * process-private.h (struct _WapiHandle_process): Add 'waited'
967         parameter
968
969         * processes.c (process_wait): Check the 'waited' parameter not the
970         signalled state when testing if a process has already been waited
971         for, as the child process itself may set signalled when exiting.
972         Fixes bug 79885.
973
974         * wapi-private.h (_WAPI_HANDLE_VERSION): Bump shared data version
975
976         * shared.c: Now the shared data version has been incremented we
977         can set the counter semaphore initial value correctly
978
979 2006-11-22  Dick Porter  <dick@ximian.com>
980
981         * processes.c (process_wait): Cope when the background process
982         reaper gets the process we were waiting for.  Special case for
983         waiting for our own process to exit.  Fixes bug 77736.
984
985 2006-11-17  Dick Porter  <dick@ximian.com>
986
987         * processes.c: Fix const correctness and typos that caused memory
988         corruption. 
989         
990 2006-11-17  Miguel de Icaza  <miguel@novell.com>
991
992         * processes.c (ShellExecuteEx): Check error after CreateProcess,
993         thanks to Dick for pointing this out. 
994
995 2006-11-16  Miguel de Icaza  <miguel@novell.com>
996
997         * processes.c (ShellExecuteEx): If we fail to create a process in
998         ShellExecute, then try to use the xdg-open command, and if that
999         fails, try to use the gnome-open command, 
1000
1001         Refactor the code so that we do not have to duplicate all this
1002         code, but instead use a ucs2-aware version of the code to do
1003         concatenations.
1004
1005 2006-11-13  Dick Porter  <dick@ximian.com>
1006
1007         * io.c (_wapi_stat_to_file_attributes): If the file is a symlink
1008         add the FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to
1009         follow the specs for the windows symlink support, but will
1010         probably have to be reworked when I have test data from a vista
1011         machine.  Fixes bug 79887.
1012
1013 2006-11-11  Miguel de Icaza  <miguel@novell.com>
1014
1015         * handles.c (CloseHandle): Cope here with the new value
1016         INVALID_HANDLE_VALUE set on handles.  
1017
1018         * processes.c (CreateProcess): Initialize the value of hThread to
1019         be INVALID_HANDLE_VALUE on failure, not to be NULL.  Improvement
1020         for #75733
1021
1022 2006-11-09  Dick Porter  <dick@ximian.com>
1023
1024         * sockets.c (_wapi_select): Do some sanity checking on the
1025         fd_sets, to avoid file descriptors > FD_SETSIZE.
1026         (_wapi_FD_CLR, _wapi_FD_ISSET, _wapi_FD_SET): Avoid file
1027         descriptors > FD_SETSIZE.
1028
1029 2006-10-27  Dick Porter  <dick@ximian.com>
1030
1031         * io.c (GetFileAttributes): Force symlinks to directories to be
1032         returned as a regular file.  Fixes bug 79733.
1033
1034 2006-10-18  Miguel de Icaza  <miguel@novell.com>
1035
1036         * io-portability.c (find_in_dir): First string dup, then closedir.
1037
1038 2006-10-12  Dick Porter  <dick@ximian.com>
1039
1040         * processes.c (_wapi_process_reap): Unref a process handle if we
1041         reaped it, found by Zoltan.  Fixes bug 79286.
1042         (process_wait): Don't wait again if we've already waited for a
1043         process.
1044
1045 2006-10-11  Sergey Tikhonov <tsv@solvo.ru>
1046
1047         * atomic.h: Fix atomic decrement.
1048
1049         * mini/cpu-alpha.md: Use native long shift insts
1050
1051         * mono/mono/mini/tramp-alpha.c: Implemented
1052         mono_arch_patch_delegate_trampoline method
1053
1054         * Started work on using global registers
1055         
1056         * Use byte/word memory load/store insts if cpu supports it
1057         
1058         * Code clean up
1059
1060         
1061 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
1062
1063         * handles.c (timedwait_signal_poll_cond): Add an alertable parameter, and if it
1064         is FALSE, avoid busy waiting.
1065
1066         * wait.c: Add an alertable parameter to the wait routines.
1067
1068 2006-10-06  Miguel de Icaza  <miguel@novell.com>
1069
1070         * io-portability.c (find_file): Rename from
1071         MONO_IO_PORTABILITY_HELP to MONO_IOMAP.
1072
1073 2006-10-03  Dick Porter  <dick@ximian.com>
1074
1075         * io-portability.h: 
1076         * io-portability.c: Optional portability helpers and wrapped
1077         system calls to try to cope with windows filenames in
1078         applications.
1079
1080         * io.c: Use the wrapped system calls
1081
1082 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
1083
1084         * critical-sections.h critical-sections.c: Make Enter/LeaveCriticalSection a macro
1085         since they are perf critical.
1086
1087         * atomic.h: Applied patch from Jakub Boqusz <qboosh@pld-linux.org>.
1088         Add atomic ops implementation for alpha.
1089
1090 2006-08-11  Dick Porter  <dick@ximian.com>
1091
1092         * processes.c (_wapi_process_reap): Avoid a deadlock by setting
1093         process termination details in an outer loop, not the
1094         _wapi_search_handle() one.
1095
1096 2006-08-10  Dick Porter  <dick@ximian.com>
1097
1098         * threads.c (_wapi_thread_queue_apc)
1099         (_wapi_thread_dispatch_apc_queue): Use a process-local mutex here
1100         instead of the cross process semaphore.  We already check that
1101         access to the APC queue is within the owning process so there's no
1102         need to protect from other processes.  Avoids a global deadlock
1103         when a thread is aborted while it holds the handle semaphore
1104         locked.
1105         (_wapi_thread_apc_pending): Hide an annoying message which can
1106         happen if a thread handle has been blown away at process shutdown
1107         while it is in an alertable wait.
1108
1109         Both problems seen while shutting down monodevelop.
1110
1111 2006-07-25  Dick Porter  <dick@ximian.com>
1112
1113         * shared.c (_wapi_shm_file): Remove '/' characters from the uname
1114         results.  Fixes bug 78917.
1115
1116 2006-07-20  Dick Porter  <dick@ximian.com>
1117
1118         * threads.c (_wapi_thread_set_termination_details): Improve the
1119         test for already-disposed thread handles, and hold the lock around
1120         the mutex abandoning.
1121
1122 2006-07-17  Dick Porter  <dick@ximian.com>
1123
1124         * processes.c (CreateProcess): Don't change directory unless a new
1125         one has been specified.  Fixes bug 78751.
1126
1127 2006-07-06  Dick Porter  <dick@ximian.com>
1128
1129         * io.c (_wapi_stat_to_file_attributes): Do a better job at
1130         figuring out the file attributes
1131         (_wapi_set_last_path_error_from_errno): New helper function to
1132         turn errno into w32 error codes that handles the differences
1133         between file and directory errors
1134         (file_setendoffile): Try turning off the extra write used to
1135         extend files, because we probably don't need it on any modern
1136         platform.  If it is needed though, we also need to lseek the file
1137         position back again
1138         (CreateFile): Treat character-special devices as a console handle,
1139         because they can't be seeked
1140         (CopyFile): If fail_if_exists is set, then the destination needs
1141         to be opened with O_EXCL
1142         (CopyFile): If fail_if_exists is not set and the destination
1143         already exists, then we should set the ERROR_ALREADY_EXISTS error
1144         even though we return success
1145         (stdhandle_create): STD_INPUT_HANDLES cannot be written to
1146         (GetStdHandle): Rework without using mono_once, so console handles
1147         can be properly closed and reopened.
1148         (mono_io_scandir): Only override errno with EACCES when the
1149         directory actually exists
1150         (FindFirstFile): Set ERROR_FILE_NOT_FOUND when no files are
1151         returned
1152         (FindClose): Cope with NULL handles
1153         (CreateDirectory): When the target already exists, just return an
1154         error.  It's the caller's job to figure out what to do.
1155         (SetCurrentDirectory): Cope with a NULL path
1156         (RemoveDirectory, GetFileAttributes, GetFileAttributesEx,
1157         SetFileAttributes, FindFirstFile, DeleteFile, MoveFile, CopyFile,
1158         CreateFile): Set path error correctly
1159
1160         * handles.c (CloseHandle): Kludge to try and cope with passing a
1161         NULL handle
1162
1163         * error.h: Add NO_ERROR as an alternative to ERROR_SUCCESS
1164
1165         * uglify.h: Added some more typedefs
1166
1167 2006-07-05  Dick Porter  <dick@ximian.com>
1168
1169         * io.c (GetFileAttributes, GetFileAttributesEx): Cope with
1170         dangling symlinks.  Fixes bug 78664.
1171
1172 2006-06-23  Dick Porter  <dick@ximian.com>
1173
1174         * handles.c (handle_cleanup): 
1175         * threads.c: Clean up threads properly when we're forcibly
1176         removing the handle entries from the shared file in
1177         handle_cleanup().  Fixes bug 78241, for real this time.
1178
1179 2006-06-15 Neale Ferguson <neale@sinenomine.net>
1180
1181         * atomic.h: More tinkering with InterlockedExchange/InterlockedCompareExchange
1182         for s390/s390x.
1183
1184 2006-06-14 Neale Ferguson <neale@sinenomine.net>
1185
1186         * atomic.h: Fix atomic exchange pointer operations for s390x - these
1187         were broken as they used 32-bit instructions rather than their 64-bit
1188         versions.
1189
1190 2006-06-14  Dick Porter  <dick@ximian.com>
1191
1192         * processes.c: Don't run the atexit handlers when bailing out
1193         of a fork/exec.
1194
1195 2006-06-14  Dick Porter  <dick@ximian.com>
1196
1197         * wait.c: Fix stupid typo shown up by gcc 4.1.1, = not ==
1198
1199         * handles-private.h: 
1200         * shared.c: 
1201         * io.c: 
1202         * processes.c: 
1203         * mono-spinlock.h: 
1204         * handles.c: 
1205         * collection.c: Fix a bunch of signed/unsigned warnings from gcc
1206         4.1.1
1207
1208 2006-06-09 Neale Ferguson <neale@sinenomine.net>
1209
1210         * atomic.h: Fix atomic operations for s390x (not really broken 
1211         but changed to use full 64-bit opcodes).
1212
1213 2006-05-24  Dick Porter  <dick@ximian.com>
1214
1215         * processes.c (process_set_current): Don't take an extra reference
1216         if we have to create our own process handle.  Fixes bug 78241
1217         again.
1218
1219         * threads.c (_wapi_thread_signal_self): Renamed from
1220         _wapi_thread_abandon_mutexes, also sets the thread state to
1221         signalled and drops a reference.  Called by the runtime when the
1222         main thread cleans itself up.
1223
1224         * handles.c (handle_cleanup): As a last resort, unref every shared
1225         handle as the process is now exiting.
1226
1227 2006-05-16  Dick Porter  <dick@ximian.com>
1228
1229         * processes.c (process_set_termination_details): Unref the handle
1230         when we've stored the exit details.  Fixes the rest of 78241.
1231
1232 2006-05-12  Dick Porter  <dick@ximian.com>
1233
1234         * threads.c: Implement pseudo handles, making GetCurrentThread()
1235         match MS behaviour.  Notice when attached threads exit, and unref
1236         the handle.  Fix usage of GetCurrentThread() in other places.
1237
1238         * handles.c (DuplicateHandle): Implement a basic form of
1239         DuplicateHandle().
1240
1241         * wait.c: Fix usage of GetCurrentThread() throughout, and cope
1242         with pseudo handles.
1243
1244 2006-04-26  Miguel de Icaza  <miguel@novell.com>
1245
1246         * io.c (file_close): Oops, do not use DeleteFile which expects
1247         unicode, instead use unlink directly
1248
1249         Add support for the new FileOptions bits on .NET 2.0.
1250
1251         It might be good if Dick reviews these changes.
1252         
1253         * io.c (file_close): If DeleteOnClose is set, then delete the file
1254         before freeing it.
1255         (CreateFile): Do not support encryption per user. 
1256         
1257         If posix_fadvise exists, pass hints on sequential scan and random
1258         access.   Did not figure out what WRITE_THROUGH maps to.
1259
1260 2006-04-26  Dick Porter  <dick@ximian.com>
1261
1262         * sockets.c (WSAIoctl): Check the output buffer is valid before
1263         writing to it.
1264
1265         * handles.c (_wapi_search_handle): Set shared pointer if we find a
1266         shared handle that has been already opened.
1267
1268 2006-04-21  Dick Porter  <dick@ximian.com>
1269
1270         * threads.c (GetCurrentThread): Reference the handle if we return
1271         an already-known thread.
1272
1273 2006-04-07  Dick Porter  <dick@ximian.com>
1274
1275         * processes.c: Fix build for older glib.
1276
1277 2006-04-06  Dick Porter  <dick@ximian.com>
1278         
1279         * processes.c (CreateProcess): Add a reference to the child
1280         process' handle, so it won't be destroyed if this process closes
1281         its copy of the handle.  Fixes bug 77393.
1282         
1283         * processes.c (process_set_current): Fall through to creating a
1284         new one if the handle lookup fails.
1285
1286         * processes.c (_wapi_process_signal_self):
1287         * handles.c (handle_cleanup): The process is exiting, so set the
1288         handle state for this process to signalled.  This should let other
1289         non-related processes wait for this handle.
1290         
1291         * handles.c (_wapi_search_handle): Don't search shared handles in
1292         all cases.
1293
1294         * collection.c (collection_thread): No need to do a collection
1295         scan straight away, do the waiting first.
1296
1297 2006-04-06  Dick Porter  <dick@ximian.com>
1298
1299         * shared.c: Fix parameters in semctl () call.
1300
1301 2006-03-28  Zoltan Varga  <vargaz@gmail.com>
1302
1303         * atomic.h atomic.c: Applied patch from David S. Miller 
1304         <davem@davemloft.net>: Reimplement Interlocked* primitives on sparc 
1305         using CAS/CASx when __GNUC__, else we will fall back to the generic 
1306         pthread version.
1307
1308 2006-03-27  Dick Porter  <dick@ximian.com>
1309
1310         * shared.c (_wapi_shm_file_open): Break out of a loop if the
1311         shared file is smaller than expected.  (We loop a few times in
1312         case another process is in the middle of creating the file.)
1313
1314 2006-03-22  Dick Porter  <dick@ximian.com>
1315
1316         * handles.c:
1317         * wapi-private.h:
1318         * shared.h:
1319         * shared.c: Delete the semaphores and shared files when the last
1320         process has finished with them
1321
1322 2006-03-15  Dick Porter  <dick@ximian.com>
1323
1324         * events.c: 
1325         * io.c: 
1326         * mutexes.c: 
1327         * processes.c: 
1328         * semaphores.c: 
1329         * sockets.c: 
1330         * threads.c: Explicitly initialise the handle ops struct
1331
1332 2006-03-14  Dick Porter  <dick@ximian.com>
1333
1334         * handles-private.h: 
1335         * wapi-private.h: 
1336         * wait.c: 
1337         * handles.c: Add a 'prewait' stage to the handle waiting, to give
1338         waiting threads a chance to check for bogus states before
1339         blocking.
1340
1341         * mutexes.c (namedmutex_prewait): Use the prewait stage to check
1342         for named mutexes that have been abandoned in a locked state (eg
1343         if a process exited abnormally while owning the mutex) and
1344         override it if needed.
1345
1346 2006-03-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1347
1348         * wait.c: speed up WaitFor* when the timeout is 0.
1349
1350 2006-03-03  Dick Porter  <dick@ximian.com>
1351
1352         * processes.c (ShellExecuteEx): Cope when some of the parameters
1353         are NULL.
1354
1355 2006-02-27  Dick Porter  <dick@ximian.com>
1356
1357         * mutexes.c: 
1358         * mono-mutex.c: 
1359         * threads.c: Comparing pthread_t with == is not portable, so use
1360         pthread_equal().
1361
1362 Thu Feb 23 18:47:20 GMT 2006 Paolo Molaro <lupus@ximian.com>
1363
1364         * *.h, *.h: patch from Dick to make Linuxthreads systems work again.
1365
1366 2006-02-22  Dick Porter  <dick@ximian.com>
1367
1368         * thread-private.h: 
1369         * threads.c: There's no need to use the timed-thread support code
1370         any more, as we aren't using the timed join.  This greatly
1371         simplifies thread setup, and fixes a memory leak (bug 77521).
1372
1373         Don't bother to store thread IDs in a hash table, use TLS instead.
1374         The one case that needs to look up the handle of a different
1375         thread (OpenThread()) can do the extra work itself.  Fixes bug
1376         77536.
1377
1378         * handles.c (_wapi_search_handle): Add a reference when returning
1379         a private handle (shared handles are already reffed.)
1380         
1381 2006-02-17  Dick Porter  <dick@ximian.com>
1382
1383         * handles-private.h: 
1384         * handles.c: Check handle values passed to array lookups.  Fixes
1385         bug 77572.
1386
1387 2006-02-09  Dick Porter  <dick@ximian.com>
1388
1389         * threads.c: Cope with the problems caused by attaching already
1390         existing threads - they don't get the infrastructure to clean up
1391         after themselves, especially the ID to handle hash.  This fixes
1392         bug 77468.
1393
1394 2006-02-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1395
1396         * shared.c: use MONO_SHARED_HOSTNAME as a substitute for gethostname()
1397         when creating the shared files in the .wapi directory. Fixes bug #77371.
1398
1399 2006-02-02  Martin Baulig  <martin@ximian.com>
1400
1401         * threads.c: Removed the `WITH_INCLUDED_LIBGC' section; it has
1402         never been used so far. 
1403
1404         * timed-thread.h (TimedThread): Removed the `stack_ptr' field; it
1405         has only been used by the removed code.
1406
1407 2006-01-03  Neale Ferguson <neale@sinenomine.net>
1408
1409         * atomic.h: Correct s390x definitions and eliminate compiler warnings.
1410
1411 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
1412
1413         * io.c: Patch _wapi_stat_to_file_attributes against bug #76966, where
1414         sockets could be considered as directory.
1415
1416 2005-12-23  Dick Porter  <dick@ximian.com>
1417
1418
1419         * semaphores.h: 
1420         * semaphores.c: Implement OpenSemaphore
1421
1422         * mutexes.c: 
1423         * mutexes.h: Implement OpenMutex
1424
1425         * wapi-private.h: 
1426         * handles.c: 
1427         * events.c: 
1428         * events.h: 
1429         * event-private.h: Implement named events.  Implement OpenEvent.
1430
1431 2005-12-15  Dick Porter  <dick@ximian.com>
1432
1433         * processes.c (CreateProcess): The pipe-based cross-process
1434         exclusion technique was trying to write NULL buffers when appname
1435         was NULL (eg when coming from ShellExecuteEx,) which usually
1436         succeeded even though EFAULT was returned - but sometimes it
1437         failed.  This meant that the child process could block forever on
1438         the pipe read.  Replace it with the simpler shared handle
1439         semaphore protection used everywhere else.  This showed up with
1440         the test case in bug 76684.
1441
1442 Tue Dec 13 11:41:49 GMT 2005 Paolo Molaro <lupus@ximian.com>
1443
1444         * shared.c: fallback to private mmap when shared mmap doesn't work
1445         (like on jffs).
1446
1447 2005-12-06  Dick Porter  <dick@ximian.com>
1448
1449         * wapi-private.h: 
1450         * handles.c: 
1451         * semaphore-private.h: 
1452         * semaphores.c: Implement named semaphores
1453
1454 2005-11-24  Dick Porter  <dick@ximian.com>
1455
1456         * processes.c (GetProcessId): Implement GetProcessId()
1457
1458 2005-11-17  Dick Porter  <dick@ximian.com>
1459
1460         * processes.h: 
1461         * processes.c: Implement ShellExecuteEx as a wrapper around
1462         CreateProcess.
1463
1464 2005-11-11  Dick Porter  <dick@ximian.com>
1465
1466         * threads.c: Give mutex abandoning its own exported function, so
1467         it can be called when the runtime is cleaning up.
1468
1469         * handles.c (_wapi_search_handle_namespace): Do a handle
1470         collection befre starting to check namespace strings, so that any
1471         stale cruft gets removed.
1472
1473 2005-11-11  Dick Porter  <dick@ximian.com>
1474
1475         * threads.c: Move thread handles back into the shared space.
1476
1477         * handles.c (_wapi_handle_unref): Add support for shared handles
1478         with close() handlers
1479
1480 2005-11-04  Dick Porter  <dick@ximian.com>
1481
1482         * sockets.c (ioctlsocket): Use select instead of if to avoid a
1483         type promotion problem on 64bit freebsd.  Based on patch by Lou
1484         Kamenov <kamenovl@gmail.com>, fixes bug 76447.
1485
1486 2005-11-04  Dick Porter  <dick@ximian.com>
1487
1488         * io.c (file_write): Only do the file locking if
1489         MONO_STRICT_IO_EMULATION is set.
1490
1491 2005-10-21  Dick Porter  <dick@ximian.com>
1492
1493         * processes.c: 
1494         * handles.c (_wapi_lookup_handle): Cope when the shared part of a
1495         handle has been deleted.
1496         (_wapi_handle_unref): And when the deleted shared part is pointed
1497         to as a handle is deleted
1498
1499 2005-10-20  Dick Porter  <dick@ximian.com>
1500
1501         * processes.c (process_set_current): If the expected process
1502         handle slot doesn't contain the correct pid, create a new handle.
1503
1504         * handles.c (_wapi_search_handle): When the search doesn't find
1505         anything, return failure instead of the last handle we looked at.
1506         (_wapi_handle_ref, _wapi_handle_unref): Don't try to ref or unref
1507         unused handles (makes tracking refcounting bugs easier.)
1508
1509 2005-10-19  Dick Porter  <dick@ximian.com>
1510
1511         * handles.c:
1512         * handles-private.h:
1513         * wapi-private.h: 
1514         * processes.c: 
1515         * mutexes.c:
1516         * collection.c (_wapi_handle_collect): Remove the shared handle
1517         indirection layer, and use locking instead.  Delete other
1518         complexity that is no longer needed.  Refcount shared handles and
1519         delete them when needed, but keep the timestamps so that orphaned
1520         handles will be cleaned up eventually.
1521
1522         * shared.c (_wapi_shm_file): Add processor, OS and struct size
1523         info to the shared file names, to cope with dual-boot and 32/64bit
1524         size issues.  Fixes bug 75839.
1525
1526         * wait.c (WaitForMultipleObjectsEx): No need to distinguish
1527         between shared handles and private, as the wait functions cope
1528         with both together now.
1529
1530 2005-10-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1531
1532         * io.c: removed NO_SIGPIPE macro.
1533         * sockets.c: no need for MSG_NOSIGNAL or ignoring SIGPIPE.
1534
1535 2005-10-11  Dick Porter  <dick@ximian.com>
1536
1537         * sockets.c (_wapi_getsockopt): Translate SO_ERROR results into
1538         w32 error codes.
1539
1540         * error.c (errno_to_WSA): Don't return a bogus error if someone
1541         asks to translate errno 0.
1542
1543 2005-10-11  Dick Porter  <dick@ximian.com>
1544
1545         * handles.c: Fix several race conditions
1546
1547 2005-10-11 Miguel de Icaza <miguel@novell.com>
1548
1549         * io.c: no need to block SIGPIPE anymore, as it is ignored.
1550
1551 2005-10-05  Dick Porter  <dick@ximian.com>
1552
1553         * threads.c (_wapi_thread_own_mutex, _wapi_thread_disown_mutex):
1554         Keep a reference to mutexes owned by threads, so they won't be
1555         destroyed prematurely.  Fixes dotmsnclient crash.
1556
1557 2005-09-26  Sebastien Pouliot  <sebastien@ximian.com>
1558
1559         * io.c: Apply patch from #76192 (Can't write files past 2gb on AMD64 
1560         (x86_64)) for Brion on IRC (Dick approved it).
1561
1562 2005-09-23  Dick Porter  <dick@ximian.com>
1563
1564         * processes.c: Don't wait for processes that have already been
1565         signalled; also fix typo.
1566
1567         * handles.c: Improve locking inside new handle and handle
1568         searching functions.
1569
1570 2005-09-20  Dick Porter  <dick@ximian.com>
1571
1572         * collection.c: 
1573         * processes.c: Periodically waitpid for known process IDs.  Fixes
1574         bug 74870.
1575
1576 2005-09-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1577
1578         * io.c:
1579         (CreateFile): if the file is a named pipe, treat the handle as a pipe,
1580         not as a file. Fixes bug #76075.
1581
1582 2005-08-27  Zoltan Varga  <vargaz@gmail.com>
1583
1584         * atomic.h: Add support for intel icc.
1585
1586 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
1587
1588         * io-layer.h: Include winbase.h not WinBase.h.
1589
1590 2005-08-19  Dick Porter  <dick@ximian.com>
1591
1592         * threads.c, threads.h, thread-private.h: Use a gsize to store the
1593         thread ID, so it can hold a 64 bit value if needed.
1594
1595 2005-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1596
1597         * error.c: map ENOENT to WSAECONNREFUSED. It might happen when
1598         connecting to unix sockets. Closes bug #75632.
1599
1600 2005-07-05  Dick Porter  <dick@ximian.com>
1601
1602         * io.c: Make sure SIGPIPE is ignored when calling write(2).
1603         Prevents the runtime exiting when writing to a closed pipe,
1604         fixing bug 75468.
1605
1606 2005-06-30  Dick Porter  <dick@ximian.com>
1607
1608         * shared.c (_wapi_shm_semaphores_init): Add some helpful error
1609         messages when semget () fails due to lack of resources.
1610
1611 2005-06-21  Dick Porter  <dick@ximian.com>
1612
1613         * mutex-private.h:
1614         * thread-private.h:
1615         * mutexes.c: 
1616         * threads.c: Keep a list of owned mutexes in each thread handle,
1617         so that it is easier to abandon them when the thread exits.
1618         Removes a bottleneck when multiple threads are finishing in
1619         parallel.
1620
1621 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1622
1623         * io.c: (GetLogicalDrives) when a bogus line is read, don't leak memory.
1624         When the buffer has not enough space, close the file before returning.
1625
1626 2005-06-09  Duncan Mak  <duncan@novell.com>
1627
1628         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
1629         all public headers. Fixes #74919.
1630
1631 2005-05-30  Zoltan Varga  <vargaz@freemail.hu>
1632
1633         * atomic.h: Add IA64 atomic ops.
1634
1635 2005-05-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1636
1637         * processes.c: make ExitCode be valid even if the user didn't call
1638         WaitForExit() and is just polling on HasExited.
1639
1640 2005-05-17  Dick Porter  <dick@ximian.com>
1641
1642         * io.c (file_getfilesize): Clear the error value, so that files
1643         with sizes with the low bits 0xFFFFFFFF can be distinguished from
1644         a genuine error.
1645
1646 2005-05-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1647
1648         * shared.c: forgot to ignore a warning.
1649
1650 2005-05-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1651
1652         * shared.c: don't display warnings after reboots.
1653
1654 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1655
1656         * sockets.c: on windows, getsockopt/setsockopt for send/receive timeout
1657         use an integer in milliseconds. We were using a struct timeval.
1658
1659 2005-05-06  Dick Porter  <dick@ximian.com>
1660
1661         * handles-private.h: 
1662         * mutexes.c: 
1663         * wapi-private.h: 
1664         * shared.h:
1665         * shared.c: 
1666         * wait.c: 
1667         * handles.c: 
1668         * collection.h: Use SysV semaphores for managing access to the
1669         shared memory - in return for the ludicrous api we get
1670         synchronisation primitives that can be cleaned up by the kernel
1671         even when a process quits unexpectedly.  This removes the
1672         timestamp issues.
1673
1674 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
1675
1676         * handles.c: Always use polling in the waits, since
1677         mono_cond_timedwait can't be interruped by the thread abort signal.
1678
1679 2005-04-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1680
1681         * events.c: calling Set on AutoResetEvent several times has the same
1682         effect as calling it only once if no thread is waiting for it.
1683
1684 2005-04-29  Dick Porter  <dick@ximian.com>
1685
1686         * processes.c (EnumProcesses): Use a GArray instead of a GPtrArray
1687         now it's storing pids not handles, also fixes memory leak caused
1688         by unclear glib documentation.
1689
1690         * sockets.c (WSACleanup): Remove unused variable
1691
1692 2005-04-29  Dick Porter  <dick@ximian.com>
1693
1694         * handles.c (_wapi_handle_check_share_by_pid): For systems that
1695         don't have file descriptor info in /proc check that the original
1696         opener of a file is still there, if a share violation would
1697         otherwise happen.
1698
1699 2005-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1700
1701         * handles.c:
1702         * handles-private.h: added _wapi_handle_forecch that loops through all
1703         the handles and call a callback function when a handle of the given
1704         type is found.
1705
1706         * sockets.c: no need to keep open sockets in an array, as we have them 
1707         in the handles structure.
1708
1709         Fixes bug #74755.
1710
1711 2005-04-28  Dick Porter  <dick@ximian.com>
1712
1713         * processes.c: Cope with handles that are only around for as long
1714         as the search is running.  If we're searching for process handles,
1715         check to see if the process is still running and signal it if not.
1716
1717         * handles.c (_wapi_search_handle): Search in the shared space as
1718         well.  Fixed bug 74752.
1719
1720         * mutexes.c:
1721         * handles.c (_wapi_handle_new_from_offset):
1722         _wapi_handle_new_for_existing_ns () was doing exactly the same as
1723         this, so deleted it.
1724
1725 2005-04-26  Dick Porter  <dick@ximian.com>
1726
1727         * handles.c: Fix stupid thinko where if a new shared handle is
1728         created but a collection was needed to free some space, it
1729         returned an error anyway.  Should fix the messages shown in bug
1730         74659.
1731
1732 2005-04-25  Dick Porter  <dick@ximian.com>
1733
1734         * handles.c (_wapi_handle_check_share): Only consider mono
1735         processes when looking to see if a file is still being held open,
1736         while checking share permissions.
1737
1738 2005-04-25  Dick Porter  <dick@ximian.com>
1739
1740         * sockets.c: 
1741         * io.c: 
1742         * wapi-private.h (struct _WapiHandleOps): 
1743         * handles.c (_wapi_handle_unref): When destroying handles, save
1744         the handle data and call the close function only after the array
1745         slot has been cleared.  This prevents race conditions with file
1746         descriptors, fixing bug 74713.
1747
1748         * mutexes.c: Delete the handle close functions, they didn't do
1749         anything anyway
1750
1751         * error.c (_wapi_get_win32_file_error): Add a mapping for EINTR so
1752         the "Unknown error" g_warning doesn't get displayed.
1753
1754 2005-04-25  Dick Porter  <dick@ximian.com>
1755
1756         * wapi-private.h: 
1757         * threads.c: Make thread handles process-private for now to take
1758         some of the space pressure off the shared memory, while I work on
1759         a real fix.
1760
1761 2005-04-21  Dick Porter  <dick@ximian.com>
1762
1763         * handles.c (_wapi_handle_check_share): Make sure there is a "fd"
1764         dir in /proc before blowing away handle info.  Fixes bug 74649.
1765
1766 2005-04-21  Dick Porter  <dick@ximian.com>
1767
1768         * wait.c (WaitForMultipleObjectsEx): Implement special waits
1769
1770         * handles.c (_wapi_handle_wait_signal_poll_share): Don't return a
1771         timeout, just wait briefly for the private signals and let the
1772         waiting thread test again.  This prevents us missing shared
1773         signals.
1774
1775 2005-04-21  Dick Porter  <dick@ximian.com>
1776
1777         * collection.h (_WAPI_HANDLE_COLLECTION_EXPIRED_INTERVAL): Reduce
1778         the time before a slot is considered too old and deleted.  This is
1779         a workaround while I come up with a proper fix.
1780
1781 2005-04-21  Dick Porter  <dick@ximian.com>
1782
1783         * mutexes.c: 
1784         * processes.c: 
1785         * threads.c: 
1786         * handles.c (_wapi_handle_new): Turn assertions into errors.
1787
1788         * collection.c (_wapi_handle_collect): Use symbols not magic
1789         numbers for timeout values
1790
1791 2005-04-19  Dick Porter  <dick@ximian.com>
1792
1793         * mutexes.c: 
1794         * wait.c: 
1795         * handles.c (_wapi_handle_count_signalled_handles)
1796         * handles-private.h (_wapi_handle_shared_lock_handle): Use new
1797         shared handle locks in critical sections.
1798
1799         * handles.c (_wapi_handle_new_for_existing_ns): Reuse old handles
1800         if there is already one there.
1801         
1802         * handles.c (_wapi_handle_ref): It was possible for a process to
1803         exit before getting around to updating shared handle timestamps,
1804         so do it here too.
1805
1806 Tue Apr 19 16:25:47 CEST 2005 Paolo Molaro <lupus@ximian.com>
1807
1808         * threads.c: fix lookup of the thread id in the has table:
1809         always use the id value, not the pointer to the id.
1810
1811 2005-04-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1812
1813         * handles.c: fix handle returned in _wapi_handle_search_handle. Dick
1814         pointed it out.
1815
1816 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1817
1818         * io-layer/sockets.c: FIONBIO with a TRUE argument means we want
1819         non-blocking IO, not the other way around.
1820
1821 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1822
1823         * handles.c:
1824         * io.c:
1825         * handles-private.h: GetFileType wasn't checking if we have memory
1826         allocated for the handle before dereferencing it. Fixes a FileStream
1827         nunit test.
1828
1829 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1830
1831         * handles.c:
1832         * processes.c:
1833         * handles-private.h: we were calling g_renew to expand the handle array,
1834         but that might move the memory and we might have pthread conditions or
1835         mutexes in the original memory area that are being used. Now instead of
1836         expanding an existing array, we just create new ones and keep a list of
1837         them. Access to _wapi_private_handles had to be modified accordingly.
1838
1839 2005-04-15  Dick Porter  <dick@ximian.com>
1840
1841         * collection.c: FreeBSD needs more than PTHREAD_STACK_MIN
1842
1843 2005-04-14  Raja R Harinath  <rharinath@novell.com>
1844
1845         * wapi-private.h: Remove reference to 'daemon-private.h'.
1846
1847 Wed Apr 13 13:12:33 EDT 2005 Paolo Molaro <lupus@ximian.com>
1848
1849         * atomic.h: applied patch from mass@akuma.org (David Waite)
1850         to fix InterlockedExchangeAdd.
1851         Fixed a few other functions, including InterlockedCompareExchange()
1852         which was miscompiled by gcc with optimizations enabled.
1853
1854 2005-04-13  Dick Porter  <dick@ximian.com>
1855
1856         * io.c (share_check): 
1857         * handles.c (_wapi_handle_check_share): Refine the file check so
1858         that sharing violations within the same process don't cause
1859         assertion failures.
1860
1861 2005-04-13  Dick Porter  <dick@ximian.com>
1862
1863         * io.c (FindFirstFile): Fix bugs introduced with the merge (bug
1864         74586)
1865
1866 2005-04-12  Dick Porter  <dick@ximian.com>
1867         
1868         The daemon-less io-layer.  Extensive lowlevel changes in
1869         handles.c, requiring some corresponding changes in other files
1870         calling these functions.  Private_foo structures have been
1871         eliminated.
1872
1873         File descriptor handling differences account for most of the
1874         changes in io.c and sockets.c.
1875
1876         Other highlights:
1877         
1878         * mutexes.c: Named mutexes are now a distinct type.
1879         * atomic.h: Fix a PPC uninitialised variable warning.
1880         * wait.c: Check conditions before waiting on a condition variable.
1881         * processes.c: Handle process fork and wait without a daemon
1882         (though this has the limitation of only being able to wait for
1883         child processes.)
1884
1885 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1886
1887         * io-private.h:
1888         * threads.c:
1889         * threads.h:
1890         * io.c:
1891         * sockets.c:
1892         * sockets.h: removed dead code that deals with async IO.
1893
1894 2005-03-30  Zoltan Varga  <vargaz@freemail.hu>
1895
1896         * atomic.c (InterlockedIncrement): Fix fallback implementation of
1897         InterlockedIncrement and InterlockedDecrement. Fixes #74228.
1898
1899 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
1900
1901         * io-layer.h: Add required header files for compiling with VS.NET.
1902
1903 2005-03-17 Miguel de Icaza <miguel@novell.com>
1904
1905         * io.c: don't fail on NFS when there are no more locks available.
1906
1907 2005-03-09  Dick Porter  <dick@ximian.com>
1908
1909         * error.c (_wapi_get_win32_file_error): ENFILE and EMFILE should
1910         map to ERROR_TOO_MANY_OPEN_FILES, not ERROR_NO_MORE_FILES.  Fixes
1911         bug 72671.
1912
1913 2005-03-09  Dick Porter  <dick@ximian.com>
1914
1915         * daemon.c (process_process_fork): Initialise the handle data
1916         before using it in the error case.  This is probably the error
1917         we're working around in the previous change.  Spotted by Taru Jain
1918         <tjain@novell.com> and Hemanth Yamijala <YHemanth@novell.com>.
1919
1920 2005-03-07  Dick Porter  <dick@ximian.com>
1921
1922         * daemon.c: It looks like g_shell_parse_argv() can return
1923         argv[0]=NULL somehow, yet still not give an error.  Make sure we
1924         don't pass NULL to strrchr(), working around a segfault that
1925         showed up on ZLM testing.
1926
1927 2005-03-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1928
1929         * sockets.c: translate EINPROGRESS to EWOULDBLOCK in connect. This is
1930         the expected error code showed by the test case in bug #73053.
1931
1932 2005-02-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1933
1934         * io.c: another leftover.
1935
1936 Fri Feb 18 17:37:29 CET 2005 Paolo Molaro <lupus@ximian.com>
1937
1938         * io.c: fixed logic in checking errno in rev 40815.
1939
1940 Fri Feb 18 16:00:29 CET 2005 Paolo Molaro <lupus@ximian.com>
1941
1942         * threads.c: we don't depend on the GC checking tls
1943         slots anymore.
1944         * processes.c: remove unused ref to GC headers.
1945
1946 Thu Feb 17 19:57:11 CET 2005 Paolo Molaro <lupus@ximian.com>
1947
1948         * io.c: remove _wapi_thread_cur_apc_pending () checks
1949         when the siscall should return immediatly and handle
1950         the case when a syscall is interrupted without
1951         erroring out, but returning a 0 read/write if possible.
1952         Still the cases of read from file need to be handled.
1953
1954 Tue Feb 8 18:28:11 CET 2005 Paolo Molaro <lupus@ximian.com>
1955
1956         * threads.c: make people test with 1 MB stack per thread.
1957
1958 2005-01-17  Dick Porter  <dick@ximian.com>
1959
1960         * timefuncs.h: Make WapiFileTime endian-aware, as it's often
1961         cast to and from 64bit ints.  Fixes bug 71213.
1962
1963 2005-01-11  Dick Porter  <dick@ximian.com>
1964
1965         * error.c (errno_to_WSA): Add EADDRNOTAVAIL error code
1966         translation.
1967
1968 Mon Jan 10 16:15:19 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
1969
1970         * atomic.h: Fix functions on s390.
1971
1972 Mon Jan 10 20:30:19 CET 2005 Paolo Molaro <lupus@ximian.com>
1973
1974         * atomic.h: fix some functions on ppc (tests/interlocked.cs).
1975
1976 2005-01-10  Dick Porter  <dick@ximian.com>
1977
1978         * misc.c (_wapi_calc_timeout): Guard against overflow when
1979         calculating timeouts.  This makes waiting with a large
1980         (Int32.MaxValue) timeout not return immediately.
1981
1982 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
1983
1984         * io.c (io_ops): make this `const' so it is shareable (well, only
1985         really shareable if it is statically linked...)
1986
1987 Mon Dec 20 11:58:33 CET 2004 Paolo Molaro <lupus@ximian.com>
1988
1989         * threads.c, threads.h: add accessor to get the pthread_key_t for
1990         a tls id.
1991
1992 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1993
1994         * io.c: check for the existence of 'dest' and set ERROR_ALREADY_EXISTS
1995         if it exists and is not the same as 'src'.
1996
1997 2004-12-01 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
1998
1999         * atomic.h : Fix InterlockedCompareExchange for s390/s390x.
2000
2001 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2002
2003         * processes.c: unquote the cmd path, allow for ' or " when quoting and
2004         pass the quoted program name to the daemon, otherwise the call to
2005         g_shell_unquote in the daemon will break things up.
2006
2007 2004-10-14  Dick Porter  <dick@ximian.com>
2008
2009         * sockets.c (_wapi_accept): Revert the previous change.  We now
2010         set the accepted socket to have the same blocking status as the
2011         listening socket in managed code.  This follows MS behaviour.
2012         
2013 2004-10-14  Dick Porter  <dick@ximian.com>
2014
2015         * sockets.c (_wapi_accept): On Darwin, make sure a newly
2016         accept()ed socket is blocking.  Fixes bug 67355, patch by
2017         grompf@sublimeintervention.com.
2018
2019 2004-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2020
2021         * system.c: check the number of online processors instead of the
2022         existing ones. Sanitize return value if it's an error.
2023
2024 2004-10-03 Ben Maurer  <bmaurer@ximian.com>
2025
2026         * system.c: Add support for getting the # of cpus.
2027
2028 2004-09-28  Dick Porter  <dick@ximian.com>
2029
2030         * io.c (pipe_close_private): Fix one small typo in the last change
2031         that totally hosed process creation with redirected pipes.
2032
2033 2004-09-24  Dick Porter  <dick@ximian.com>
2034
2035         * wapi-private.h: 
2036         * sockets.c: 
2037         * socket-private.h: 
2038         * io.c: 
2039         * io-private.h: 
2040         * handles-private.h: Cope when a file descriptor is reused while
2041         the handle that thought it owned it is still referenced, instead
2042         of asserting.  Probably fixes bug 66479, though we've been unable
2043         to reproduce it.
2044
2045 2004-09-09  Dick Porter  <dick@ximian.com>
2046
2047         * error.c:
2048         * io.c: Set error codes everywhere.
2049
2050 2004-09-06  Dick Porter  <dick@ximian.com>
2051
2052         * handles.c (_wapi_handle_unref): Reset the private record's type
2053         (CloseHandle): Check for a fd mapping failure, and return FALSE.
2054         (_wapi_handle_process_fork): Fix long-standing bug in checking
2055         handle return values.  Also do the required bookkeeping with the
2056         new process's handles.
2057
2058         * daemon.c: When creating a new process's handles, check whether
2059         the shared space needs to be increased
2060
2061 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
2062
2063         * shared.c (_wapi_shm_file): Fix leaking of filename.
2064
2065 2004-08-19  Dick Porter  <dick@ximian.com>
2066
2067         * handles.c (_wapi_handle_count_signalled_handles): Fix thinko
2068         introduced with the fd offset stuff: unlock handles properly when
2069         backing off.  Fixes the monologue hang at exit.
2070
2071 2004-08-18  Dick Porter  <dick@ximian.com>
2072
2073         * sockets.c: 
2074         * io.c: Check that new fds fit in the table, return error if not
2075
2076         * daemon.c (_wapi_daemon_main): 
2077         * handles.c (shared_init): Have all processes agree on a size for
2078         the fd table.
2079
2080 2004-08-17  Dick Porter  <dick@ximian.com>
2081
2082         * daemon.c (process_new): 
2083         * handles.c (_wapi_handle_new_internal): Cope when the space
2084         reserved for file descriptors is larger than the shared segment
2085         size.  Fixes the crash reported when running mono under gdb on
2086         macosx.
2087
2088 2004-08-16  Dick Porter  <dick@ximian.com>
2089
2090         * sockets.c:
2091         * io.c:
2092         * handles-private.h (_wapi_handle_fd_offset_to_handle): Improve
2093         error checking with passed-in file descriptors.
2094
2095 2004-08-11  Dick Porter  <dick@ximian.com>
2096
2097         * sockets.c: 
2098         * io.c: Returned handle values are the file descriptor the handle
2099         encapsulates
2100
2101         * handles.c: 
2102         * handles-private.h: 
2103         * daemon.c: Reserve the range of handles that can have the same
2104         values as file descriptors.  These won't be used, but the values
2105         will be used as file, console, pipe or socket handles.  The fd to
2106         handle mapping is done internally and is invisible to users.
2107         Fixes bug 61828.
2108
2109         * wapi-private.h (_WAPI_HANDLE_VERSION): Increment, because we now
2110         reserve a chunk of handle space.
2111
2112 2004-08-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
2113
2114         * atomic.h: add support for 64-bit S/390
2115
2116 2004-07-22  Dick Porter  <dick@ximian.com>
2117
2118         * timed-thread.c: 
2119         * threads.c: Move the destruction of the internal thread data to
2120         after the thread has been joined.  Fixes bug 61418.
2121
2122 2004-07-14  Dick Porter  <dick@ximian.com>
2123
2124         * wait.c (test_and_own): When not waiting for all handles to
2125         become signalled, only own and return the lowest.  All the
2126         documentation suggests that the old way was correct, but
2127         experimentation shows it actually works like this.  Patch by
2128         Sébastien Robitaille
2129         (sebastien.robitaille@croesus.com), fixes bug 61511.
2130
2131 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
2132
2133         * threads.c: register roots for gc
2134
2135 2004-07-08  Dick Porter  <dick@ximian.com>
2136
2137         * io.c (file_seek): If there is a high 32bit offset part, make
2138         sure the low part isn't sign-extended.  Set error codes when
2139         returning failure.  Fixes bug 61131.
2140
2141 2004-07-06  Dick Porter  <dick@ximian.com>
2142
2143         * io.c (file_setfiletime): Check for underflow when converting to
2144         time_t values.  Set error codes when returning failure.  Fixes bug
2145         60970.
2146
2147 2004-07-05  Dick Porter  <dick@ximian.com>
2148
2149         * mutexes.c (mutex_ops_init): Make the named mutex mutex sharable.
2150
2151         * daemon.c (unref_handle): Only destroy a handle if all processes
2152         have released it, not just the current one.  Fixes bug 60887.
2153
2154 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
2155
2156         * mono-mutex.h atomic.h: Add G_GNUC_UNUSED to static inline functions
2157         to prevent warnings.
2158
2159 2004-06-24  Dick Porter  <dick@ximian.com>
2160
2161         * mutexes.c: Indicate when a named mutex was reused
2162
2163 2004-06-24  Dick Porter  <dick@ximian.com>
2164
2165         * threads.c (SuspendThread): 
2166         * timed-thread.c (_wapi_timed_thread_suspend): Wrap sem_wait in a
2167         while loop.  See bug 58161.
2168
2169 Wed Jun 23 23:29:04 CEST 2004 Paolo Molaro <lupus@ximian.com>
2170
2171         * io.c: don't use sharemode for on-disk file permissions: it's used
2172         for shared access to the open file.
2173
2174 2004-06-22  Dick Porter  <dick@ximian.com>
2175
2176         * events.c (CreateEvent): When creating an auto-reset event that
2177         is initially owned, make sure the set count starts at 1.
2178
2179 2004-06-18  Dick Porter  <dick@ximian.com>
2180
2181         * event-private.h:
2182         * events.c: Auto-reset events need to release one thread for each
2183         time SetEvent() is called.  Fixes bug 41292.
2184
2185         * threads.h:
2186         * mutex-private.h:
2187         * mutexes.c: Scan for mutexes that are still locked by a thread
2188         when it exits.  Fixes the MS demo app linked by bug 41292.
2189
2190         * wait.c (test_and_own): Make sure a handle is signalled before it
2191         is owned.
2192
2193 2004-06-16  Dick Porter  <dick@ximian.com>
2194
2195         * timed-thread.c: Call the thread cleanup exit routine before taking
2196         the join mutex, because this could deadlock if another thread tries
2197         to join in the meantime.  This fixes the hang-at-exit problem seen
2198         on macos.
2199
2200 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
2201
2202         * threads.c: Implemented SleepEx.
2203         * threads.h: Fixed SleepEx signature.
2204
2205 2004-06-03  Miguel de Icaza  <miguel@ximian.com>
2206
2207         * threads.c: When running under valgrind, do not allocate too much
2208         stack, as Valgrind default is 1 meg.
2209
2210 2004-05-27  Dick Porter  <dick@ximian.com>
2211
2212         * io.h:
2213         * io.c: Implemented LockFile() and UnlockFile()
2214
2215 2004-05-21  Dick Porter  <dick@ximian.com>
2216
2217         * io.c (CreateFile): Check for existing share modes when opening
2218         a file.
2219
2220         * handles.c: 
2221         * handles-private.h: 
2222         * daemon-messages.h: 
2223         * daemon.c: Maintain a hash of file share modes, keying on device
2224         and inode (to cope with symlinks.)
2225
2226 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
2227
2228         * daemon-messages.c: Retry if the communication with the daemon is
2229           interrupted by a signal.
2230         * io.c, sockets.c: Check for EINTR in every syscall that can be interrumped. 
2231           Only return an error in this case if there is something in the apc queue
2232           (which means that it is an interruption requested by the "user").
2233         * processes.c: Use WaitForSingleObjectEx. No need to pass "alertable" as
2234           true since the wait is small.
2235         * shared.c: Retry write calls when interrumped by a signal.
2236         * timed-thread.h, timed-thread.c: added _wapi_thread_apc_pending, which
2237           returns TRUE if there are pending asynchronous calls (APC) for the
2238           provided thread. Also added _wapi_thread_dispatch_apc_queue which calls
2239           the enqueued APCs. Defined a new struct ApcInfo that holds information
2240           about an enqueued APC.
2241         * thread-private.h, threads.c: Implemented QueueUserAPC (which does the same
2242           as in win32),_wapi_thread_apc_pending and _wapi_thread_dispatch_apc_queue. 
2243           These last two methods call the corresponding apc methods in 
2244           thread-private using the provided thread handle.
2245         * threads.h: Added QueueUserAPC.
2246         * uglify.h: Added WapiApcProc (needed by QueueUserAPC).
2247         * wait.c, wait.h: Changed WaitForSingleObject to WaitForSingleObjectEx, and
2248           WaitForMultipleObjects to WaitForMultipleObjectsEx. Implemented support
2249           for APCs in those two methods and also in SleepEx.
2250
2251 2004-05-17  Dick Porter  <dick@ximian.com>
2252
2253         * io.c (CopyFile): Speed up.  Fixes bug 57859.
2254
2255 2004-05-13  Dick Porter  <dick@ximian.com>
2256         * mono-mutex.c (mono_mutex_unlock): Return EPERM when the current
2257         thread doesn't own the mutex, rather than assert()ing.
2258
2259 2004-05-11  Dick Porter  <dick@ximian.com>
2260
2261         * shared.c (_wapi_shm_attach): Cope when a previous daemon startup
2262         attempt failed, leaving shared files that look like a daemon is
2263         still starting.
2264
2265 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2266
2267         * io.c:
2268         (SetFileAttributes): don't the the exec bit if the corresponding read
2269         bit is not set.
2270
2271 2004-05-10  Zoltan Varga  <vargaz@freemail.hu>
2272
2273         * io.c (FindFirstFile): Fix invalid free.
2274
2275 2004-05-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2276
2277         * io.c: translate from GFileError to errno codes and don't free
2278         variables right after calling mono_io_scandir, as we may overwrite
2279         errno value.
2280
2281 2004-05-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2282
2283         * io.c: g_dir_open return ENOENT for directories on which we don't have
2284         read/execute permission, while returning EPERM for anything below those.
2285         So, change ENOENT by EPERM if the directory exists.
2286
2287 2004-05-07  Dick Porter  <dick@ximian.com>
2288
2289         * io.c (SetFileAttributes): Don't have failed chmod()s cause a
2290         "file not found" error.  Fixes bug 54032.
2291         
2292 2004-05-07  Dick Porter  <dick@ximian.com>
2293
2294         * io.c (FindFirstFile): Comment out a windows-compatibility check
2295         that breaks when directories have metachars in their names.
2296         Workaround for bug 58116.
2297
2298 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2299
2300         * io.c: fixed for FindFirstFile for empty directories. Closes
2301         bug #58147.
2302
2303 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2304
2305         * processes.c: set the start time for the current process. Fixes bug
2306         #58109.
2307
2308 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2309
2310         * io-private.h: 'namelist' is now a gchar ** in _WapiHandlePrivate_find.
2311         * io.c: implemented scandir using glib functions.
2312
2313 2004-05-04  Dick Porter  <dick@ximian.com>
2314
2315         * daemon.c (read_message): Return FALSE on error so the GSource
2316         callback itself can return FALSE.  Cures the infinite loop poll()
2317         warning on MacosX.
2318         * shared.c: Fix some daemon startup race conditions.
2319
2320 2004-04-29  Miguel de Icaza  <miguel@ximian.com>
2321
2322         * io.c (CopyFile): Use 32k buffers to copy the file instead of 2k,
2323         use the stack, do not use dynamic memory.
2324
2325 2004-04-29  Zoltan Varga  <vargaz@freemail.hu>
2326
2327         * io.c: Add scandir implementation for platforms which do not have
2328         it, like solaris.
2329
2330 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2331
2332         * io.[ch]: implemented GetLogicalDriveStrings.
2333
2334 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2335
2336         * io.c:
2337         * sockets.c: use the field name from configure when accessing sigval
2338         pointer field. Makes this work on the Mac.
2339
2340 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
2341
2342         * atomic.c: (InterlockedExchange) fix typo for
2343         mutex name
2344
2345 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2346
2347         * io.c:
2348         * sockets.c: added check for sys/aio.h.
2349
2350 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2351
2352         * error.[ch]: added _wapi_get_win32_file_error...
2353         * io.c: ... which was _wapi_get_win32_error here.
2354         * sockets.c: rename the function calls here too.
2355
2356 2004-04-28  Dick Porter  <dick@ximian.com>
2357
2358         * daemon-messages.c: Avoid a deadlock when a thread is killed while
2359         waiting for the daemon by using a recursive mutex.  Helps bug 56699.
2360
2361 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2362
2363         * io.c: fixed leak in async_notifier().
2364
2365         * sockets.[ch]: added AIO support for sockets and fixed WSAIoctl
2366         declaration.
2367
2368         * threads.c: removed old comment.
2369
2370 2004-04-26  David Waite  <mass@akuma.org>
2371
2372         * daemon-messages.h:
2373         * daemon-private.h
2374         * error.h:
2375         * io.h:
2376         * processes.h:
2377         * shared.h:
2378         * thread-private.h:
2379         * wapi-private.h: remove comma from end of enumeration declarations
2380         * status.h: cast unsigned int types to int for enum assignment
2381
2382 2004-04-26 David Waite <mass@akuma.org>
2383
2384         * io.c:
2385         * timefuncs.c: declare 64-bit constants as long long types (i.e.
2386         10ULL)
2387
2388 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2389
2390         * socket-wrappers.h: _wapi_socket == WSASocket now. Added
2391         WSA_FLAG_OVERLAPPED.
2392
2393         * sockets.c: new unused parameters for _wapi_socket.
2394
2395 2004-04-22  Miguel de Icaza  <miguel@ximian.com>
2396
2397         * timed-thread.c: Replace sem_init with MONO_SEM_INIT to handle
2398         the fact that MacOS X is a piece of junk (sem_init is *defined* in
2399         the libc, but they return `not implemented'). 
2400
2401 2004-04-22  Dick Porter  <dick@ximian.com>
2402
2403         * handles.c: 
2404         * handles-private.h: Reference the handle when it is locked, so
2405         that another thread can't blow it away while we're waiting for it
2406         to become signalled.
2407         
2408         * wait.c: 
2409         * timed-thread.c: 
2410         * threads.c: 
2411         * sockets.c: 
2412         * semaphores.c: 
2413         * mutexes.c: 
2414         * mono-mutex.c: 
2415         * io.c: 
2416         * handles.c: 
2417         * handles-private.h: 
2418         * events.c: 
2419         * error.c: 
2420         * daemon-messages.c: 
2421         * critical-sections.c: 
2422         * atomic.c: Added pthreads cleanup handlers and error asserts
2423
2424         * shared.c: 
2425         * handles.c: Fixed the gcc "variable might be used uninitialised"
2426         warnings.  They can't happen, but gcc doesn't know that
2427         g_assert()s don't return.
2428
2429         Fixed the declaration of _wapi_handle_process_kill() so that it
2430         expects the correct type for the pid.
2431         
2432         * threads.c: Removed the TLS_PTHREAD_MUTEX style locking that
2433         hasn't been used in ages and just made the code more complex.
2434
2435 2004-04-17  Zoltan Varga  <vargaz@freemail.hu>
2436
2437         * processes.c: Include <signal.h> for SIGKILL and SIGILL + fix some
2438         warnings. Fixes #57168.
2439
2440 2004-04-16  Dick Porter  <dick@ximian.com>
2441
2442         * threads.c (Sleep): Using div(3) with a negative (when signed)
2443         numerator causes the quotient to be 0 and the remainder to be the
2444         numerator.  This feeds a small negative value to nanosleep(3),
2445         which will return immediately and cause a busy wait.  Fixes bug
2446         56351.
2447
2448 2004-04-15  Dick Porter  <dick@ximian.com>
2449
2450         * io-private.h:
2451         * io.c: Rewrite FindFirstFile and FindNextFile using scandir(3)
2452         and fnmatch(3) instead of glob(3).  glob() can't cope with being
2453         given filenames containing metachars.  This fixes bug 40557.
2454
2455 2004-04-14  Bernie Solomon  <bernard@ugsolutions.com>
2456
2457         * security.c: #warning is a GCC-ism
2458
2459 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
2460
2461         * security.c: Removed GetUserName as glib g_get_user_name does a
2462         better (portability) job. Added ImpersonateLoggedOnUser and
2463         RevertToSelf.
2464
2465 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2466
2467         * mono-mutex.h: move pthread_mutex_timedlock declaration to...
2468         * mono-mutex.c: ...here. It was causing a warning that prevented
2469         libgdiplus compilation.
2470
2471 2004-04-04  Miguel de Icaza  <miguel@ximian.com>
2472
2473         * security.c (GetUserName): Make it work on MacOS X
2474
2475 2004-04-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2476
2477         * security.c: use getpwuid_r if available. This one is thread-safe.
2478
2479 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
2480
2481         * Makefile.am: Added security.c|h.
2482         * security.c: New file for security related functions. Added function
2483         GetUserName to fix #56144.
2484         * security.h: New. Header file for security.c
2485         * wapi.h: Added include for security.h
2486
2487 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2488
2489         * daemon-messages.h: added kill structs.
2490
2491         * daemon.c: implemented process_process_kill.
2492         * handles-private.h:  define process_process_kill.
2493         * handles.c: implemented _wapi_handle_process_kill.
2494         * processes.[ch]: implemented TerminateProcess.
2495
2496 2004-03-25  Bernie Solomon  <bernard@ugsolutions.com>
2497
2498         * daemon.c (rem_fd): On solaris you seem to get an
2499         error even after removing the input source so don't
2500         try and rem_fd it twice.
2501
2502 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
2503
2504         * daemon.c: in process_post_mortem, If the child terminated due to the 
2505         receipt of a signal, the exit status must be based on WTERMSIG, since 
2506         WEXITSTATUS returns 0 in this case.
2507
2508 2004-03-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2509
2510         * daemon.c: turned a warning into a DEBUG statement. Now we may hit it.
2511
2512 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2513
2514         * daemon.c: only call getdtablesize () once.
2515         * processes.c: wait 500 ms to check if execve failed and throw the same
2516         exception as MS on failure. Fixes bug #32809.
2517
2518 2004-03-17  Bernie Solomon  <bernard@ugsolutions.com>
2519
2520         * io.c (async_notifier): use "union sigval" rather
2521         than sigval_t as Solaris doesn't have sigval_t
2522         (which isn't in IEEE 1003.1 either).
2523
2524 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2525
2526         * io.c: added debug stuff and removed a few redundant lines in
2527         file_write.
2528
2529 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2530
2531         * io-private.h: added new fields for file structure. Declare
2532         _wapi_io_add_callback.
2533
2534         * io.c: added _wapi_get_win32_error, support aio_read/write in
2535         file_read/write. Implemented _wapi_io_add_callback, which is where
2536         BindHandle ends up.
2537         
2538         * io.h: added new fields for WapiOverlapped and typedef for the
2539         callback.
2540
2541         * processes.c: fixed off-by-one bug when handling environment variables 
2542         passed in.
2543
2544         * threads.[ch]: implemented BindIoCompletionCallback.
2545
2546         * uglify.h: added typedef for LPOVERLAPPED_COMPLETION_ROUTINE.
2547
2548 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
2549
2550         * socket-wrappers.h: Remove extra semicolon.
2551
2552 2004-03-03  Dave Camp  <dave@ximian.com>
2553
2554         * daemon.c: (add_fd), (fd_activity), (_wapi_daemon_main):
2555         Use a new main context.
2556
2557 2004-03-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2558
2559         * io.c:
2560         (GetFileAttributes): set the error depending on errno instead of
2561         setting ERROR_FILE_NOT_FOUND always. See bug #55160.
2562
2563 2004-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2564
2565         * io.c:
2566         (CopyFile): free the buffer on error.
2567         * sockets.c:
2568         (WSAIoctl): free the buffer on error.
2569
2570 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2571
2572         * error.c: fixed mapping for EPROTONOSUPPORT and ESOCKTNOSUPPORT.
2573
2574         * sockets.[ch]: retry creating the socket for AF_INET, SOCK_RAW
2575         using IP protocol with IP over IP. Implemented WSAIoctl UNIX-style.
2576
2577 2004-01-27  Bernie Solomon  <bernard@ugsolutions.com>
2578
2579         * shared.c (_wapi_shm_file): add hostname
2580         to shared data file names to handle NFS mounted
2581         .wapi directories.
2582
2583 Mon Jan 26 16:15:03 CET 2004 Paolo Molaro <lupus@ximian.com>
2584
2585         * sockets.h: remove obsolete soklen_t typedef.
2586
2587 Fri Jan 23 21:07:02 CET 2004 Paolo Molaro <lupus@ximian.com>
2588
2589         * socket-wrappers.h, sockets.h, sockets.c, Makefile.am: move socket
2590         wrappers to its own non-installed header file.
2591
2592 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2593
2594         * io.c:
2595         (FindFirstFile): unlock the handle if FindNextFile fails.
2596         (FindNextFile): g_free a couple of pointers before retrying.
2597
2598         * wait.c:
2599         (WaitForMultipleObjects): if only one handle provided, use
2600         WaitForSingleObject.
2601
2602 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
2603
2604         * handles-private.h: (_wapi_handle_type) check
2605         for segment in range before using it
2606
2607 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
2608
2609         * thread-private.h: _wapi_thread_ops is now const
2610         must match .c file.
2611
2612 Mon Dec 22 18:29:03 CET 2003 Paolo Molaro <lupus@ximian.com>
2613
2614         * threads.c, timed-thread.c, timed-thread.h: use mach
2615         semaphores on Darwin (MacOSX) since the posix ones
2616         are mostly broken there (threads are not created suspended
2617         and they can start executing before they are fully initialized
2618         like in tests/thread-static.cs).
2619
2620 Mon Dec 22 17:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
2621
2622         * atomic.h: ppc fixes.
2623
2624 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
2625
2626         * handles.c: remove my bad use of MONO_ZERO_ARRAY_LENGTH
2627         in HDRSIZE 
2628
2629 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
2630
2631         * shared.c: (_wapi_shm_open) make scratch file
2632         not have to immediately regrow to avoid remaps
2633         (HPUX can't cope with these).
2634         (_wapi_shm_attach) use actual size of file
2635         to set scratch data_len for the creating process.
2636
2637         * handles.c: (_wapi_handle_new_internal) make
2638         sure mutex & cond var are initialized even for
2639         non process shared ones. 
2640         (_wapi_handle_unref) always call destroy 
2641         routines on mutex & cond var
2642
2643 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
2644
2645         * daemon.c: change channel data structure so
2646         input sources are removed from glib event loop
2647         properly. xsp works better on Solaris and 
2648         fixes #51278
2649
2650 2003-12-12  Bernie Solomon  <bernard@ugsolutions.com>
2651
2652         * wapi-private.h: Replace G_GNUC_PRETTY_FUNCTION
2653         definition with file & line number for non-GCC
2654         compiles.
2655
2656 2003-12-08  Bernie Solomon  <bernard@ugsolutions.com>
2657
2658         * Makefile.am: make sure hppa_atomic.s is in distribution
2659
2660 2003-12-01  Dick Porter  <dick@ximian.com>
2661
2662         * wapi-private.h: 
2663         * mutexes.c (CreateMutex): 
2664         * mutex-private.h (struct _WapiHandle_mutex): 
2665         * handles.c: Look up certain handle types by name, in a shared
2666         namespace.  Currently only mutex handles have this implemented.
2667         Fixes bug 51089.
2668
2669         * semaphores.c (CreateSemaphore): 
2670         * events.c (CreateEvent): Fix signature
2671
2672 2003-11-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2673
2674         * io.c: don't call g_free before testing errno as it may modify it.
2675         If the path exists, return an error if it's not a directory. Fixes
2676         bug #50753.
2677
2678 2003-11-20  Dick Porter  <dick@ximian.com>
2679
2680         * io.c: Missed a little-endian UTF16 conversion.  Patch from
2681         Jeroen Zwartepoorte (Jeroen@xs4all.nl), fixes bug 51065.
2682
2683 2003-10-29  Dick Porter  <dick@ximian.com>
2684
2685         * io.c (MoveFile): If the move crosses filesystems, try and fall
2686         back to copy and delete.  Patch from Jörg Rosenkranz
2687         (JoergR@voelcker.com), fixes bug 50298.
2688
2689 2003-10-28  Dick Porter  <dick@ximian.com>
2690
2691         * io.c: Use the new encoding conversion to cope with non-utf8
2692         locales in filenames.
2693
2694         * processes.c: Ditto for process arguments.
2695
2696 Tue Oct 21 12:01:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
2697
2698         * atomic.h: some ppc inline asm fixes (incorrect use of labels, 
2699         incorrect register constraints, incorrect clobber lists).
2700
2701 2003-10-13  Bernie Solomon  <bernard@ugsolutions.com>
2702
2703         * Makefile.am hppa_atomic.s: add HP 64bit
2704         implementation of atomic ops
2705
2706 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
2707
2708         * threads.c (CreateThread): Wrap pthread_attr_setstacksize call in
2709         a conditional for platforms that don't have it.
2710
2711 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
2712
2713         * threads.c: (CreateThread) use stacksize argument
2714         if non-zero - change default for 64 bits to 4Mb
2715
2716 2003-09-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2717
2718         * sockets.c: set last error when socket creation fails. This shed some
2719         light on bug #49015.
2720
2721 2003-09-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2722
2723         * processes.c: fixed bug #48973: we only change \ by / for the argument
2724         to be used as command.
2725         When getting the program name from the args, don't let the space between
2726         them in the args.
2727
2728 2003-09-24  Bernie Solomon <bernard@ugsolutions.com>
2729
2730         * atomic.h atomic.c: fix sparc so lock is
2731         global, increment does so and it compiles under Sun compiler.
2732
2733 2003-09-22  Bernie Solomon <bernard@ugsolutions.com>
2734
2735         * handles.c: include <string.h> directly as may
2736         not be nested in <sys/un.h> like Linux
2737
2738 2003-09-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2739
2740         * io.c:
2741         (DeleteFile): call SetLastError on failure. Fix by
2742         richard.torkar@htu.se (Richard Torkar). Closes bug #48222.
2743
2744 2003-09-15  Lluis Sanchez Gual  <lluis@ximian.com>
2745
2746         * daemon.c: In compare_process(), discard handles already signalled.
2747
2748 2003-09-02  Dick Porter  <dick@ximian.com>
2749
2750         * io.c: Work around glib brain-dead assumptions about utf8-encoded
2751         filenames.  Fixes bug 30781.
2752
2753 2003-08-28  Dick Porter  <dick@ximian.com>
2754
2755         * critical-sections.c:  Patch from Bernie Solomon
2756         <bernard@ugsolutions.com> to emit a warning if locking a critical
2757         section fails.
2758
2759 2003-07-23  Dick Porter  <dick@ximian.com>
2760
2761         * shared.c:
2762         * daemon.c (maybe_exit): Avoid the race condition when the daemon is
2763         closing but another client comes along when the shared data is still
2764         visible.  Should fix bugs 33671 and 35213.
2765
2766 2003-07-23  Dick Porter  <dick@ximian.com>
2767
2768         * handles.c:  Initialise handle mutex and cond.  Fix by
2769         Bernie Solomon <bernard@ugsolutions.com>
2770
2771 2003-07-15  Dick Porter  <dick@ximian.com>
2772
2773         * timed-thread.c (timed_thread_start_routine): Fix virtual memory
2774         leak when threads quit.  Fixes bug 44067.
2775
2776 Wed Jun 18 19:08:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
2777
2778         * io.c: never add write permission for group or others in
2779         SetFileAttributes ().
2780
2781 2003-06-17  Dick Porter  <dick@ximian.com>
2782
2783         * io.c (SetFileAttributes): Implement the ReadOnly attribute, and
2784         ignore the unsupported ones ("fixes" bug 44977).
2785
2786 2003-06-17  Lluis Sanchez Gual  <lluis@ximian.com>
2787
2788         * misc.c: fix bug in _wapi_calc_timeout. It gave wrong values for
2789           high ms values (there was an overflow).
2790
2791 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
2792
2793         * system.h (struct _WapiSystemInfo ): Fix warnings when using gcc-3.3.
2794
2795 2003-06-11  Dick Porter  <dick@ximian.com>
2796
2797         * shared.c: Fix shared directory creation.  Patch from
2798         Pablo Baena <pbaena@uol.com.ar>
2799
2800 2003-06-10  Dick Porter  <dick@ximian.com>
2801
2802         * atomic.c: Delete the useless compile warning
2803
2804 2003-06-09  Dick Porter  <dick@ximian.com>
2805
2806         * daemon.c: Lookup env as a string array.  Fixes bug 44289.  Also
2807         make setting the process handle value in the environment actually
2808         work.
2809
2810         * processes.c: Pretty up the process name, if it happens to be
2811         "mono" such as when another mono process forks "mono foo.exe"
2812
2813 2003-06-05  Dick Porter  <dick@ximian.com>
2814
2815         * processes.c (process_set_current): Don't do an expensive handle
2816         search at application startup, check the environment to see if the
2817         process handle has already been created.
2818
2819         * io.c: Don't do an expensive handle search when creating stdin,
2820         stdout and stderr handles, just create them all the first time one
2821         is requested.
2822
2823         * wapi-private.h:
2824         * shared.c:
2825         * shared.h:
2826         * handles.c:
2827         * handles-private.h:
2828         * daemon-messages.h:
2829         * daemon-private.h:
2830         * daemon.c: Support for "unlimited" number of handles and scratch
2831         data.
2832
2833         Speed up application startup by passing process handle in the
2834         environment, rather than let the app scan all handles (which gets
2835         really slow when there are more than a few thousand to check.)
2836
2837         Initialise some structs passed to syscalls, noticed by valgrind.
2838         
2839
2840 2003-05-20  Dick Porter  <dick@ximian.com>
2841
2842         * io.c (FindFirstFile): Include . files in the glob.  Fixes bug
2843         43229.
2844
2845 2003-05-19  Dick Porter  <dick@ximian.com>
2846
2847         * threads.c: Set the new thread's stack size to 2M.  Fix needed
2848         for BSD, reported by Martin Dvorak <md@9ll.cz>
2849
2850 2003-05-16  Dick Porter  <dick@ximian.com>
2851
2852         * io.h:
2853         * io.c: Implement GetTempPath()
2854
2855 2003-05-16  Dick Porter  <dick@ximian.com>
2856
2857         * processes.c (CreateProcess): Set some error codes
2858
2859 2003-05-12  Dick Porter  <dick@ximian.com>
2860
2861         * misc.c (_wapi_calc_timeout): Cope with overflowing tv_nsec.
2862         Patch from Martin Dvorak <mdvorak@ninell.cz>.
2863
2864 2003-05-10  Dick Porter  <dick@ximian.com>
2865
2866         * io.c (CopyFile): Copy file mode as well as file data.  Based on
2867         suggestion by Giuseppe Greco <giuseppe.greco@agamura.com>, bug
2868         42706.
2869
2870 2003-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2871
2872         * handles.c: don't call GC_gcollect when creating new handles.
2873
2874 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2875
2876         * handles.c: added some debugging code. Call GC_gcollect
2877         before creating a new handle. It makes Lupus' test run smoother and
2878         faster (from 62 to 83 request per second). Notice that calling
2879         GC_finalizer_notifier if needed (GC_should_invoke_finalizer ()) does
2880         not improve nor degrade the performance, so i don't do it.
2881
2882 2003-05-02  Dick Porter  <dick@ximian.com>
2883
2884         * sockets.c: Rearrange closesocket() and socket_close_private(),
2885         and remember to unref the handle, so we don't leak socket handles.
2886         Fix from Pelle Johnsen <pelle.johnsen@mail.dk>
2887
2888 2003-04-11  Dick Porter  <dick@ximian.com>
2889
2890         * atomic.h: ARM atomic operations by Malte Hildingson
2891         <tds00mahi@tellus.thn.htu.se>
2892
2893 Tue Apr 8 11:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
2894
2895         * atomic.h: fix macosx build by "Urs C. Muff" <umuff@quark.com>.
2896
2897 2003-04-03  Martin Baulig  <martin@ximian.com>
2898
2899         The following change is conditional to `WITH_INCLUDED_LIBGC'
2900         which is not yet enabled by default.
2901
2902         * threads.c (SuspendThread, ResumeThread): Fully implemented this.
2903         (gc_init): New static function; install a signal handler for
2904         SIGPWR which is used to suspend threads.  [FIXME: it SIGPWR
2905         doesn't exist on all Unix systems, we need to find another
2906         signal].
2907         (mono_wapi_push_thread_stack): New public function.  Tells the
2908         garbage collector about the current stack pointer of a suspended
2909         thread.
2910
2911 2003-04-03  Martin Baulig  <martin@ximian.com>
2912
2913         * timed-thread.h (TimedThread): Added `suspended_sem',
2914         `suspend_count' and `stack_ptr'.
2915
2916 2003-03-28  Dick Porter  <dick@ximian.com>
2917
2918         * atomic.h: PPC support gratiously donated to the public domain
2919         by John Duncan <jddst19@mac.com>
2920
2921 2003-03-20  Dick Porter  <dick@ximian.com>
2922
2923         * sockets.c (_wapi_connect): If connect() fails with EACCES, try
2924         setting SO_BROADCAST and connecting again.  Fixes bug 39178.
2925
2926 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2927
2928         * processes.c: included Jerome Laban's patch and call SetLastError when
2929         the executable is not found.
2930
2931 2003-03-03  Dick Porter  <dick@ximian.com>
2932
2933         * io.c (CreateFile): Try opening directories readonly, so that
2934         timestamps can be adjusted.  Patch by Elan Feingold
2935         <efeingold@mn.rr.com>.
2936
2937 2003-02-25  Dick Porter  <dick@ximian.com>
2938
2939         * shared.c (_wapi_shm_attach): Return a failure code on system
2940         call errors, rather than exiting.
2941
2942 2003-02-21  Dick Porter  <dick@ximian.com>
2943
2944         * processes.c (GetCurrentProcessId): Use the current process
2945         handle to return the process ID, as getpid() is unreliable
2946         (linuxthreads gives each thread a different pid).  Fixes bug
2947         37550.
2948
2949 2003-02-21  Dick Porter  <dick@ximian.com>
2950
2951         * io.c (FindNextFile): Skip over dangling symlinks.  Fixes bug
2952         34076.
2953
2954 2003-02-11  Dick Porter  <dick@ximian.com>
2955
2956         * timefuncs.h: 
2957         * timefuncs.c: Added GetTickCount()
2958
2959 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2960
2961         * error.c: added WSA_EHOSTUNREACH mapping.
2962
2963 2003-01-26  Miguel de Icaza  <miguel@ximian.com>
2964
2965         * io.c (SetFileAttributes): This routine is not currently
2966         implemented for the general case, but I added a special case to
2967         set the executable bit on Linux.
2968
2969 Wed Jan 15 15:55:40 CET 2003 Paolo Molaro <lupus@ximian.com>
2970
2971         * sockets.h, daemon.c, io.c: compilation fixes on MacOSX.
2972
2973 2003-01-08  Dick Porter  <dick@ximian.com>
2974
2975         * sockets.c: Fixed setting blocking mode to true (fixes bug 36388)
2976
2977 2002-12-11  Juli Mallett  <jmallett@FreeBSD.org>
2978
2979         * daemon.c, handles-private.h, handles.c, wapi-private.h:
2980         Check for an implementation which says it supports
2981         _POSIX_THREAD_PROCESS_SHARED, rather than just one that
2982         defines the symbol.  Defined but with a value of -1 still
2983         means that it is unsupported.
2984
2985 2002-12-08  Martin Baulig  <martin@ximian.com>
2986
2987         * handles.c (_wapi_handle_new): Create new non-shared handles with
2988         an initial refcount of 1, not 0.
2989
2990 2002-11-22  Dietmar Maurer  <dietmar@ximian.com>
2991
2992         * threads.c (TlsGetValue): removed unnecessary mutex
2993
2994 2002-11-20  Dick Porter  <dick@ximian.com>
2995
2996         * timed-thread.c (_wapi_timed_thread_attach): Attached threads
2997         need to store their data structure too.
2998
2999         * threads.c: Make sure the threading data is initialised wherever
3000         it is needed
3001
3002 2002-11-15  Dick Porter  <dick@ximian.com>
3003
3004         * timed-thread.c: Removed unneeded parameters in
3005         _wapi_timed_thread_attach().
3006
3007         * threads.c: Renamed AttachThread() to make it not look like
3008         external API.  Removed unneeded parameters.
3009
3010 2002-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3011
3012         * error.[ch]: added errno_to_WSA (). It displays a warning and return
3013         WSASYSCALLFAILURE if there is no error mapping for the given errno,
3014
3015         * sockets.c: use errno_to_WSA and fixed display of warning for h_errno.
3016
3017 2002-10-31  Dick Porter  <dick@ximian.com>
3018
3019         * io.h: 
3020         * io.c: Define and use INVALID_FILE_ATTRIBUTES
3021
3022 2002-10-07  Dick Porter  <dick@ximian.com>
3023
3024         * timefuncs.c:
3025         * daemon.c: Use a more accurate time source for process start and
3026         end times.
3027
3028 2002-10-03  Dick Porter  <dick@ximian.com>
3029
3030         * daemon.c:
3031         * handles.c:
3032         * threads.c:  Fixes for freebsd.  Make sure that mutex and condition
3033         creation and deletion happen in the process that owns them, when
3034         POSIX shared thread objects aren't supported.  This breaks on
3035         freebsd, as pthread_t is a pointer to data.
3036
3037 2002-10-02  Dick Porter  <dick@ximian.com>
3038
3039         * shared.c: Use mmap() instead of sysv shm for the shared data.
3040
3041         * wapi-private.h (_WAPI_HANDLE_VERSION): Reset back to 0, for the
3042         new system
3043
3044         * daemon-private.h: 
3045         * daemon.c: mmap()ed regions survive fork, so just pass the
3046         pointer to _wapi_daemon_main instead of mapping it again.
3047
3048 2002-10-01  Dick Porter  <dick@ximian.com>
3049
3050         * timed-thread.c: Kludge for CREATE_SUSPENDED thread creation.
3051         Unfortunately libgc uses the same thread suspend technique that I
3052         want to, and the two don't mix: libgc will deadlock when it tries
3053         to stop the world if a thread has already been suspended by
3054         someone else.  Just do the simple suspended create rather than the
3055         general purpose thread suspension for now.
3056
3057         * threads.c: Pass create flags to the timed_thread create call, to
3058         implement suspended thread creation.  ResumeThread() partially
3059         implemented, to cope with the case where a newly created but
3060         suspended thread is launched.
3061
3062 2002-09-30  Dick Porter  <dick@ximian.com>
3063
3064         * sockets.c (ioctlsocket): Set non-blocking mode in a better way,
3065         with fcntl.
3066
3067 2002-09-27  Dick Porter  <dick@ximian.com>
3068
3069         * semaphores.c: Only include semaphore.h if it's present. Patch
3070         for BSD from jmmv@hispabsd.org (Julio Merino).
3071
3072 2002-09-27  Dick Porter  <dick@ximian.com>
3073
3074         * processes.c: Pass environment and working directory to the
3075         daemon when forking.  Don't let argv[0] be duplicated when looking
3076         for the program name.  Implement EnumProcessModules (simple
3077         version for now, lsof-style later if needed), GetModuleBaseName,
3078         {Get,Set}ProcessWorkingSetSize (just faked, because the vm hints
3079         aren't available on Linux).
3080
3081         * process-private.h: Store the process name, and the working set
3082         min and max
3083
3084         * handles.c:
3085         * handles-private.h: New functions to store and retrieve an array
3086         of strings in the scratch space
3087
3088         * daemon.c: Don't miss deleting some handles when a client exits
3089         (we used to rely on the client doing the final cleanup, but
3090         obviously if the client is no longer there the daemon has to do
3091         it).
3092
3093         Process forking now sets the environment and the working
3094         directory.
3095
3096         * io.c: Don't confuse fd 0 with an unassigned handle struct
3097
3098         * atomic.h: Add a google cache alternative to the msdn URL
3099
3100 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3101
3102         * sockets.c:
3103         (_wapi_recvfrom): added ECONNRESET to the switch.
3104
3105 2002-09-24  Mark Crichton  <crichton@gimp.org>
3106
3107         * atomic.h: Yea.  On linux, sparc isn't sparc, it's __sparc__.
3108         Added to ifdef.
3109
3110 2002-09-19  Mark Crichton  <crichton@gimp.org>
3111
3112         * daemon.c, shared.c: Added NEED_LINK_UNLINK for systems that
3113         dont have Linux's abstract filesystem for sockets.
3114
3115 2002-09-19  Mark Crichton  <crichton@gimp.org>
3116
3117         * atomic.h: Added SPARC atomic asm code.
3118         * daemon.c, handles-private.h, handles.c, wapi-private.h:
3119         undefined _POSIX_THREAD_PROCESS_SHARED.  This actually exists on
3120         Solaris 9, however, the code paths don't seem to work.  More testing
3121         on the shared case is *really* needed.
3122
3123 2002-09-03  Dick Porter  <dick@ximian.com>
3124
3125         * threads.h: 
3126         * threads.c: Removed PosixKillThread(), because it's not in the
3127         w32 api
3128
3129 2002-08-20  Dick Porter  <dick@ximian.com>
3130
3131         * handles.c (_wapi_handle_scratch_store): Made stored byte lengths
3132         multiples of 4 bytes, to keep header structures aligned.  Needed
3133         for sparc, at least. (Patch from crichton@gimp.org)
3134
3135         * handles.c: Removed 'disable_shm' variable (we've defaulted to
3136         building with shm enabled for months now)
3137
3138 2002-08-19  Dick Porter  <dick@ximian.com>
3139
3140         * daemon.c: Rewrote the poll() loop to use GIOChannels instead,
3141         for legacy NeXT-based systems.
3142
3143 2002-08-12  Dick Porter  <dick@ximian.com>
3144
3145         * atomic.h: Rename some parameters to avoid c++ keywords (Patch
3146         from Joseph Wenninger <kde@jowenn.at>)
3147
3148 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
3149
3150         * threads.c: use fast spinlocks by default
3151
3152 2002-08-02  Dick Porter  <dick@ximian.com>
3153
3154         * io.c (GetStdHandle): Add a handle reference when returning a
3155         duplicate console handle.  This fixes the unref_handle errors in
3156         NUnit.
3157
3158 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
3159
3160         * threads.c (TLS_PTHREAD_MUTEX): define this because else some
3161         tests does not work
3162
3163 2002-08-01  Dick Porter  <dick@ximian.com>
3164
3165         * threads.c: Use atomic spinlocks in TLS functions
3166
3167         * mono-spinlock.h:
3168         * Makefile.am: Added mono-spinlock.h
3169
3170 2002-07-21  Jeffrey Stedfast  <fejj@ximian.com>
3171
3172         * daemon-messages.c: #include <sys/types.h> and <sys/sockets.h> -
3173         these are needed for sendmsg() and also for struct msghdr (at
3174         least on Solaris). Solaris still won't build because struct msghdr
3175         doesn't have msg_flags, msg_control, or msg_controllen members.
3176         (CMSG_SPACE): Define for systems that don't have it.
3177         (CMSG_LEN): Same.
3178
3179 2002-07-20  Dick Porter  <dick@ximian.com>
3180
3181         * wapi-private.h:
3182         * io-private.h:
3183         * io.h:
3184         * io.c:
3185         * handles.c: Implemented pipe handles
3186         
3187         * handles.c:
3188         * daemon.c: Fixed bug in handle closing.
3189
3190         * shared.c:
3191         * daemon.c: Forked processes now close all open file descriptors.
3192
3193 Fri Jul 19 19:05:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
3194
3195         * sockets.h, io-layer.h, critical-sections.h: don't include config.h
3196         in header files.
3197
3198 2002-07-19  Martin Baulig  <martin@gnome.org>
3199
3200         * threads.c (ExitThread): Call exit() if no threads has been
3201         created yet.
3202
3203 2002-07-17  Dick Porter  <dick@ximian.com>
3204
3205         * daemon-messages.c: Freebsd fixes from Andreas Kohn
3206         <andreas.kohn@gmx.net>
3207
3208 2002-07-15  Dick Porter  <dick@ximian.com>
3209
3210         * io.c: Removed bogus console_flush() method, that was just cut
3211         and pasted from file_flush when I separated the two handle types.
3212
3213 2002-07-12  Dick Porter  <dick@ximian.com>
3214
3215         * io.c (convert_from_flags): Fixed misunderstanding wrt fcntl
3216         flags.  Fixes bug 27633.
3217
3218 2002-07-12  Dick Porter  <dick@ximian.com>
3219
3220         * wapi-private.h:
3221         * handles.c:
3222         * daemon.c: Use size of sockaddr_un.sun_path from config.h
3223
3224 2002-07-12  Dick Porter  <dick@ximian.com>
3225
3226         * processes.c (CreateProcess): Send stdin, stdout and stderr
3227         handles if the startup info doesnt specify new ones
3228
3229         * io.c (GetStdHandle): Return the same handle when the same
3230         standard handle is requested
3231
3232         * handles.c: Pass file descriptors when forking
3233
3234         * daemon.c: Use supplied file descriptors when forking a new
3235         process
3236
3237         * daemon-messages.h: 
3238         * daemon-messages.c: Pass stdin, stdout and stderr file
3239         descriptors to the daemon (used when forking)
3240
3241 2002-07-11  Miguel de Icaza  <miguel@ximian.com>
3242
3243         * daemon.c (_wapi_daemon_main): Use sizeof
3244         (main_socket_address.sun_path) instead of hardcoded 108 value.
3245
3246         * handles.c (shared_init): Use sizeof
3247         (shared_socket_address.sun_path) instead of hardcoded 108 value.
3248
3249 2002-07-10  Dennis Haney  <davh@davh.dk>
3250
3251         * shared.c:
3252         * handles.c:
3253         * daemon.c: Lots of documentation, some added error checking, and
3254         code readability improvements.
3255
3256         * daemon-messages.h: Add the Error request type to improve error
3257         checking.
3258
3259         * daemon-messages.c: Do a bit more error checking on send() and
3260         recv(), and log errors with a higher severity level.
3261
3262 2002-07-04  Dick Porter  <dick@ximian.com>
3263
3264         * daemon.c (process_process_fork): Fix argument handling, due to
3265         buggy understanding of g_strsplit() behaviour.
3266
3267 2002-07-03  Dick Porter  <dick@ximian.com>
3268
3269         * threads.h:
3270         * threads.c: Implement OpenThread().  Define access-control values
3271         for thread handles.
3272
3273         * wapi.h:
3274         * processes.h:
3275         * access.h:
3276         * Makefile.am: Added access.h, to hold shared access-control
3277         definitions
3278
3279 2002-07-02  Dick Porter  <dick@ximian.com>
3280
3281         * wapi-private.h (_WAPI_HANDLE_VERSION): New protocol version
3282         
3283 2002-07-02  Dick Porter  <dick@ximian.com>
3284
3285         * handles.c (shared_init): Make a second attempt to contact the
3286         daemon if the shared memory attach succeeds, but the connect()
3287         fails. (This copes with the daemon crashing without cleaning up
3288         the shared memory.)
3289
3290         * Makefile.am: 
3291         * daemon-private.h:
3292         * daemon.c:
3293         * shared.c (_wapi_shm_attach): Don't exec() anything when we fork
3294         the daemon, it's now built into the library.
3295
3296 2002-06-25  Dick Porter  <dick@ximian.com>
3297
3298         * handles.c:
3299         * handles-private.h:
3300         * daemon-messages.h:
3301         * daemon.c: Process forking and handle data management
3302
3303         * processes.h:
3304         * process-private.h:
3305         * processes.c: Process forking and other support functions
3306
3307 2002-06-25  Dick Porter  <dick@ximian.com>
3308
3309         * versioninfo.h: PE resource decoding
3310
3311         * unicode.c (_wapi_unicode_to_utf8): g_utf16_to_utf8 doesnt need
3312         to be told the string length
3313
3314         * io.c: Removed the ACTUALLY_DO_UNICODE option.  Fixed some leaks.
3315         Moved _wapi_time_t_to_filetime and the WapiFileTime typedef to
3316         timefuncs.c
3317
3318 2002-06-12  Dick Porter  <dick@ximian.com>
3319
3320         * daemon.c: 
3321         * daemon-messages.c: Handle SIGPIPE in a non-stupid way in the
3322         daemon, if MSG_NOSIGNAL isn't available.  Thanks to Jaroslaw
3323         Kowalski <jarek@atm.com.pl> for pointing out the bogosity.
3324
3325 2002-06-10  Jaroslaw Kowalski <jarek@atm.com.pl>
3326
3327         * sockets.c, daemon-messages.c: Prevent SIGPIPE from being raised
3328         when writing to a closed socket.
3329
3330 2002-06-08  Jeffrey Stedfast  <fejj@ximian.com>
3331
3332         * mono-mutex.c (mono_once): New convenience function for my
3333         previous fix.
3334
3335         * handles.c:
3336         * error.c: 
3337         * critical-sections.c: 
3338         * threads.c: 
3339         * sockets.c: 
3340         * semaphores.c: 
3341         * processes.c: 
3342         * mutexes.c: 
3343         * io.c: 
3344         * events.c: 
3345         * atomic.c: Use mono_once() rather than pthread_once().
3346
3347 2002-06-06  Jeffrey Stedfast  <fejj@ximian.com>
3348
3349         * handles.c (_wapi_handle_new): pthread_once() is not atomic, so
3350         if multiple threads all try to call _wapi_handle_new() before the
3351         shared data has been initialized, it is possible that we could get
3352         into a condition where shared_init() is being executed and later
3353         threads will pass by pthread_once() due to the fact that it has
3354         already been called and so therefor will attempt to use the shared
3355         data before it has been completely initialized. If we instead use
3356         a standard mutex locking mechanism around shared_init(), we can
3357         avoid the situation entirely. By wrapping the mutex locking in a
3358         check to see if we've already initialized the data, we can even
3359         avoid wasting resources by having to lock/unlock the mutex in any
3360         later calls (the only time we'd have to worry about
3361         locking/unlocking is the initial race to call shared_init() at
3362         startup).
3363
3364 Sat Jun 1 13:27:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
3365
3366         * atomic.h: inline asm fixes from Dennis Haney (davh@davh.dk).
3367
3368 Fri May 31 16:21:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
3369
3370         * daemon.c, handles.c: rename "sun" local var since it's apparently
3371         a #define on Solaris.
3372
3373 Fri May 31 15:40:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
3374
3375         * daemon-messages.c: work-around MSG_NOSIGNAL missing on some
3376         platforms.
3377
3378 2002-05-15  Dick Porter  <dick@ximian.com>
3379
3380         * wait.c: Fix a deadlock in WaitForMultipleObjects
3381
3382 2002-05-14  Dick Porter  <dick@ximian.com>
3383
3384         * io.c: Fix a cut&paste error, found by
3385         Jaroslaw Kowalski <jarek@atm.com.pl>
3386
3387 2002-05-10  Dan Lewis  <dihlewis@yahoo.co.uk>
3388
3389         * io.c: Nasty typo.
3390
3391 2002-05-09  Dick Porter  <dick@ximian.com>
3392
3393         * threads.c: 
3394         * semaphores.c: 
3395         * processes.c: 
3396         * mutexes.c: 
3397         * handles-private.h: 
3398         * events.c: 
3399         * Makefile.am: Remove now-unused file wait-private.h
3400
3401 2002-05-08  Dick Porter  <dick@ximian.com>
3402
3403         * shared.c: Better error messages, and report when daemon
3404         connection fails rather than blocking forever.  Do some more
3405         shared memory sanity checking.
3406
3407         * handles.c: Better error messages when connecting to shared
3408         memory and the handle daemon.  Fall back to non-shared handles if
3409         an error occurs.  Set the default back to 'shared handles'.  Fix a
3410         crashing bug in scratch space allocation that mangled the block
3411         headers.
3412
3413 2002-05-07  Miguel de Icaza  <miguel@ximian.com>
3414
3415         * handles.c (shared_init): Disable SHM for now, people have too
3416         many problems with this, and the diagnostics are not helping.
3417
3418 2002-05-06  Dan Lewis  <dihlewis@yahoo.co.uk>
3419
3420         * io.c: CreateFile sets win32 last error.
3421
3422 2002-05-05  Dick Porter  <dick@ximian.com>
3423
3424         * wapi-private.h: 
3425         * handles-private.h:
3426         * io.c: 
3427         * io-private.h:
3428         * mutexes.c: 
3429         * mutex-private.h: 
3430         * processes.c: 
3431         * process-private.h: 
3432         * semaphores.c: 
3433         * semaphore-private.h: 
3434         * sockets.c: 
3435         * socket-private.h: 
3436         * events.c: 
3437         * event-private.h: Simplify the WapiHandleOps struct: take out all
3438         the file-specific entries, leaving just the items that operate on
3439         handles themselves.  Split the close operation into shared and
3440         private parts: shared close is called by the daemon.
3441
3442         * handles.c: As above, but also pass handle allocation, ref and
3443         unref operations to the daemon.  Populate the handle_ops array at
3444         compile time, because the daemon needs to call ops on handles too.
3445         Don't bother to track open handle counts any more, the daemon does
3446         that.
3447         
3448         * threads.c: 
3449         * thread-private.h: As above, but also make the thread data
3450         handle-private.
3451
3452         * shared.c: Fork a handle daemon if the calling process created
3453         the shared memory segment.
3454
3455         * daemon.c:
3456         * daemon-messages.c:
3457         * daemon-messages.h:
3458         * Makefile.am: Build a daemon to manage handle allocation and
3459         destruction without needing to lock the shared memory
3460
3461 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
3462
3463         * atomic.c: Changed to use a normal mutex rather than a spinlock
3464         since a lot of platforms seem to not have them :\
3465
3466 2002-04-30  Dick Porter  <dick@ximian.com>
3467
3468         * Completely rewrote the handle waiting code: removed the helper
3469         thread and its attendant complexity.  All handle waiting is now
3470         abstracted into the WaitForSingleObject() and
3471         WaitForMultipleObjects() functions.
3472
3473         * Implemented inter-process sharing of handles using sysv shared
3474         memory.  This makes handles even more opaque, with a handle now
3475         just an index into an array.
3476         
3477 2002-04-25  Dan Lewis  <dihlewis@yahoo.co.uk>
3478
3479         * io.c: unitialized pointer in GetCurrentDirectory.
3480
3481 Sat Apr 20 13:37:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
3482
3483         * threads.c: destroy the mutex at thread destruction
3484         (if/when thread destruction code will be actually called).
3485         When protecting a tls data pointer from the gc, use also the 
3486         thread id in the key.
3487         
3488 Wed Apr 17 18:36:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
3489
3490         * timed-thread.c: avoid race condition when setting the thread to
3491         detached.
3492
3493 2002-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3494
3495         * jit.h: to more #include lines to avoid breaking compilation
3496         under windows when upgrading mingw and w32api to version
3497         1.3 (thanks Dick!).
3498
3499 2002-04-16  Dick Porter  <dick@ximian.com>
3500
3501         * atomic.h: Explanatory comment about lack of 80386 support
3502
3503 2002-04-15  Dick Porter  <dick@ximian.com>
3504
3505         * atomic.h: use xaddl for InterlockedIncrement() and
3506         InterlockedDecrement().  Use cmpxchgl in a loop for
3507         InterlockedExchange() and InterlockedExchangePointer().
3508
3509 Mon Apr 15 13:31:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
3510
3511         * unicode.c: fix unicode_len() to not access uninitialized memory
3512         (and updated to conform to mono code style).
3513
3514 Fri Mar 29 17:15:11 CET 2002 Paolo Molaro <lupus@ximian.com>
3515
3516         * io.c: EEXISTS is ignored for directory creation.
3517         * mono-mutex.h: remove silly "pragma }" that emacs users insert
3518         because they use a broken editor:-)
3519
3520 2002-03-28  Dick Porter  <dick@ximian.com>
3521
3522         * sockets.h: 
3523         * sockets.c: 
3524         * io.c: 
3525         * handles.h: 
3526         * handles.c: Warning cleanups
3527
3528 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
3529
3530         * unicode.h, unicode.c: changed to gunichar2
3531         * io.h, io.c: changed strings to gunichar2*, added
3532         SetFileAttributes(), GetCurrentDirectory(), SetCurrentDirectory(),
3533         some fixes to FindFirstFile() and friends.
3534
3535 2002-03-26  Dick Porter  <dick@ximian.com>
3536
3537         * types.h: Implement the large integer struct
3538
3539         * timefuncs.h:
3540         * timefuncs.c: Dummy functions that don't yet implement
3541         QueryPerformanceCounter() and QueryPerformanceFrequency()
3542
3543         * threads.h:
3544         * threads.c: Implement SleepEx()
3545
3546         * system.h:
3547         * system.c: Beginnings of GetSystemInfo()
3548
3549         * mono-mutex.c (pthread_mutex_timedlock): Fix a ms/ns conversion
3550         thinko
3551
3552         * context.h:
3553         * context.c: Dummy function that doesnt yet implement
3554         GetThreadContext()
3555
3556         * atomic.h: 
3557         * atomic.c: Interlocked functions
3558
3559 Mon Mar 25 13:01:40 CET 2002 Paolo Molaro <lupus@ximian.com>
3560
3561         * threads.c: use a gc-safe hash table to store tls pointers.
3562
3563 2002-03-22  Dick Porter  <dick@ximian.com>
3564
3565         * threads.c: Fix a race condition where a thread can start and
3566         exit before the handle has been properly initialised (no reason
3567         why the handle couldn't be initialised beforehand, so do so)
3568
3569         Fix a ms to ns conversion magnitude thinko.
3570
3571 2002-03-21  Dick Porter  <dick@ximian.com>
3572
3573         * semaphores.c: Fix a problem when waiting for one or more
3574         semaphores, and another semaphore is Released (all waiting
3575         semaphores assumed they were signalled)
3576
3577 2002-03-29  Dan Lewis <dihlewis@yahoo.co.uk>
3578
3579         * io.h, io.c, uglify.h: added MoveFile, CopyFile, CreateDirectory,
3580         RemoveDirectory, GetFileAttributes, GetFileAttributesEx
3581
3582 2002-03-19  Dietmar Maurer  <dietmar@ximian.com>
3583
3584         * threads.c (Sleep): bug fix: 1ms == 1000000ns
3585
3586 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
3587
3588         * io.h, io.c, events.c, mutexes.c, semaphores.c, sockets.c,
3589         threads.c, io.c: added flush method to handles.
3590
3591         * io.c: FlushFileBuffers() and FindFirstFile() functions.
3592
3593 Thu Mar 7 17:21:52 CET 2002 Paolo Molaro <lupus@ximian.com>
3594
3595         * threads.c, timed-thread.c, wait.c: Boehm-GC anable.
3596
3597 2002-02-20  Dick Porter  <dick@ximian.com>
3598
3599         * io-layer.h: Always build without cygwin support on windows
3600
3601 Mon Feb 18 15:50:59 CET 2002 Paolo Molaro <lupus@ximian.com>
3602
3603         * sockets.c: #undef DEBUG.
3604
3605 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
3606
3607         * io-layer.h: conditionally include sys/filio.h and sys/sockio.h
3608         for FIONBIO, FIONREAD, and SIOCATMARK.
3609
3610 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
3611
3612         * sockets.c: conditionally include sys/filio.h and sys/sockio.h
3613         for FIONBIO, FIONREAD, and SIOCATMARK.
3614
3615 2002-02-13  Dick Porter  <dick@ximian.com>
3616
3617         * sockets.c: Implement shutdown and select
3618
3619 2002-02-13  Jeffrey Stedfast  <fejj@ximian.com>
3620
3621         * mono-mutex.[c,h]: New source files that thinly wrap all pthread
3622         functions that take pthread_mutex_t and/or pthread_mutexattr_t
3623         arguments for the sake of portability. Implements recursive
3624         mutexes and pthread_mutex_timedlock.
3625
3626         * critical-sections.c:
3627         * events.c:
3628         * handles.c:
3629         * mutexes.c:
3630         * semaphores.c:
3631         * threads.c:
3632         * timed-thread.c:
3633         * wait.c: Use the mono-mutex wrapper portability functions/macros.
3634
3635         * pthread-compat.[c,h]: Replaced by mono-mutex.[c,h]
3636
3637 2002-01-23  Dick Porter  <dick@ximian.com>
3638
3639         * sockets.c: Networking support, mostly wrapping BSD socket APIs
3640         with handle code, and translating errno into w32 error codes.
3641
3642         * macros.h: Some w32 macros used with the socket support
3643
3644         * error.c: Implemented GetLastError() and SetLastError()
3645
3646         * Makefile.am: Added sockets, with kludge to override some symbols
3647
3648 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
3649
3650         * unicode.c (_wapi_unicode_to_utf8): byteswap UTF16 strings before
3651         passing them to iconv
3652         (_wapi_unicode_to_utf8): only swap bytes on LE systems, remove bug
3653         from previous commit.
3654
3655 2001-12-11  Dick Porter  <dick@ximian.com>
3656
3657         * io.c: Implement DeleteFile(), GetFileTime(), SetFileTime() and
3658         FileTimeToSystemTime().
3659
3660         * unicode.c (unicode_len): Nasty way of finding length of unicode
3661         string with embedded NULLs (counts until two NULLs together).
3662
3663         * mutexes.c (mutex_close): 
3664         * events.c (event_close): Release the internal pthreads resources
3665
3666 2001-11-26  Dick Porter  <dick@ximian.com>
3667
3668         * critical-sections.c:
3669         * events.c:
3670         * handles.c:
3671         * io.c:
3672         * mutexes.c:
3673         * semaphores.c:
3674         * threads.c:
3675         * timed-thread.c:
3676         * wait.c: turn off DEBUG messages
3677
3678 2001-11-22  Dick Porter  <dick@ximian.com>
3679
3680         * handles.c (SignalObjectAndWait): Implement
3681
3682         * wait.c (WaitForSingleObject): Fix case where timeout == 0
3683
3684         * threads.c:
3685         * semaphores.c:
3686         * mutexes.c:
3687         * io.c:
3688         * events.c: Support for SignalObjectAndWait
3689         
3690 2001-11-21  Dick Porter  <dick@ximian.com>
3691
3692         * events.c:
3693         * handles.c:
3694         * mutexes.c:
3695         * semaphores.c:
3696         * threads.c:
3697         * wait.c: Reliable method of returning which handle was signalled
3698         on return from WaitForMultipleObjects().
3699
3700 2001-11-21  Dick Porter  <dick@ximian.com>
3701
3702         * events.c: Implement events
3703
3704 2001-11-15  Dick Porter  <dick@ximian.com>
3705
3706         * mutexes.c: Implement mutexes
3707
3708         * threads.c: 
3709         * semaphores.c: 
3710         * misc.c: Factor out some common code
3711
3712 2001-11-13  Dick Porter  <dick@ximian.com>
3713
3714         * threads.c: Implement TLS.  Implement GetCurrentThreadId(), and
3715         GetCurrentThread() by maintaining a hash of thread handles.
3716
3717         * threads.h: Define thread and process creation flags
3718
3719 2001-11-12  Dick Porter  <dick@ximian.com>
3720
3721         * critical-sections.c: Implement critical sections
3722
3723 2001-11-12  Dick Porter  <dick@ximian.com>
3724
3725         * semaphores.c: Implement semaphores
3726
3727         * wait.c (wait_for_item): Maintain a wait count rather than count
3728         signalled booleans.
3729
3730         * threads.c (thread_wait_multiple): Don't lock the wait item, that
3731         will block other wait threads
3732
3733 2001-11-11  Dick Porter  <dick@ximian.com>
3734
3735         * Makefile.am: Rename some automake variables
3736         (from Nick Drochak <ndrochak@gol.com>)
3737
3738 2001-11-10  Dick Porter  <dick@ximian.com>
3739
3740         * Makefile.am (libwapiincludedir): Fix include destination
3741
3742         * .cvsignore: Ignore generated files
3743
3744 2001-11-10  Dietmar Maurer  <dietmar@ximian.com>
3745
3746         * pthread-compat.c: added some include files to make it compile on
3747         linux.
3748
3749 2001-11-08  Dick Porter  <dick@ximian.com>
3750
3751         * Initial checkin.
3752
3753         This is a library emulating the win32 threading and IO API.