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