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