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