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