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