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