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