2005-05-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mono / io-layer / ChangeLog
1 2005-05-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2
3         * shared.c: don't display warnings after reboots.
4
5 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6
7         * sockets.c: on windows, getsockopt/setsockopt for send/receive timeout
8         use an integer in milliseconds. We were using a struct timeval.
9
10 2005-05-06  Dick Porter  <dick@ximian.com>
11
12         * handles-private.h: 
13         * mutexes.c: 
14         * wapi-private.h: 
15         * shared.h:
16         * shared.c: 
17         * wait.c: 
18         * handles.c: 
19         * collection.h: Use SysV semaphores for managing access to the
20         shared memory - in return for the ludicrous api we get
21         synchronisation primitives that can be cleaned up by the kernel
22         even when a process quits unexpectedly.  This removes the
23         timestamp issues.
24
25 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
26
27         * handles.c: Always use polling in the waits, since
28         mono_cond_timedwait can't be interruped by the thread abort signal.
29
30 2005-04-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
31
32         * events.c: calling Set on AutoResetEvent several times has the same
33         effect as calling it only once if no thread is waiting for it.
34
35 2005-04-29  Dick Porter  <dick@ximian.com>
36
37         * processes.c (EnumProcesses): Use a GArray instead of a GPtrArray
38         now it's storing pids not handles, also fixes memory leak caused
39         by unclear glib documentation.
40
41         * sockets.c (WSACleanup): Remove unused variable
42
43 2005-04-29  Dick Porter  <dick@ximian.com>
44
45         * handles.c (_wapi_handle_check_share_by_pid): For systems that
46         don't have file descriptor info in /proc check that the original
47         opener of a file is still there, if a share violation would
48         otherwise happen.
49
50 2005-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
51
52         * handles.c:
53         * handles-private.h: added _wapi_handle_forecch that loops through all
54         the handles and call a callback function when a handle of the given
55         type is found.
56
57         * sockets.c: no need to keep open sockets in an array, as we have them 
58         in the handles structure.
59
60         Fixes bug #74755.
61
62 2005-04-28  Dick Porter  <dick@ximian.com>
63
64         * processes.c: Cope with handles that are only around for as long
65         as the search is running.  If we're searching for process handles,
66         check to see if the process is still running and signal it if not.
67
68         * handles.c (_wapi_search_handle): Search in the shared space as
69         well.  Fixed bug 74752.
70
71         * mutexes.c:
72         * handles.c (_wapi_handle_new_from_offset):
73         _wapi_handle_new_for_existing_ns () was doing exactly the same as
74         this, so deleted it.
75
76 2005-04-26  Dick Porter  <dick@ximian.com>
77
78         * handles.c: Fix stupid thinko where if a new shared handle is
79         created but a collection was needed to free some space, it
80         returned an error anyway.  Should fix the messages shown in bug
81         74659.
82
83 2005-04-25  Dick Porter  <dick@ximian.com>
84
85         * handles.c (_wapi_handle_check_share): Only consider mono
86         processes when looking to see if a file is still being held open,
87         while checking share permissions.
88
89 2005-04-25  Dick Porter  <dick@ximian.com>
90
91         * sockets.c: 
92         * io.c: 
93         * wapi-private.h (struct _WapiHandleOps): 
94         * handles.c (_wapi_handle_unref): When destroying handles, save
95         the handle data and call the close function only after the array
96         slot has been cleared.  This prevents race conditions with file
97         descriptors, fixing bug 74713.
98
99         * mutexes.c: Delete the handle close functions, they didn't do
100         anything anyway
101
102         * error.c (_wapi_get_win32_file_error): Add a mapping for EINTR so
103         the "Unknown error" g_warning doesn't get displayed.
104
105 2005-04-25  Dick Porter  <dick@ximian.com>
106
107         * wapi-private.h: 
108         * threads.c: Make thread handles process-private for now to take
109         some of the space pressure off the shared memory, while I work on
110         a real fix.
111
112 2005-04-21  Dick Porter  <dick@ximian.com>
113
114         * handles.c (_wapi_handle_check_share): Make sure there is a "fd"
115         dir in /proc before blowing away handle info.  Fixes bug 74649.
116
117 2005-04-21  Dick Porter  <dick@ximian.com>
118
119         * wait.c (WaitForMultipleObjectsEx): Implement special waits
120
121         * handles.c (_wapi_handle_wait_signal_poll_share): Don't return a
122         timeout, just wait briefly for the private signals and let the
123         waiting thread test again.  This prevents us missing shared
124         signals.
125
126 2005-04-21  Dick Porter  <dick@ximian.com>
127
128         * collection.h (_WAPI_HANDLE_COLLECTION_EXPIRED_INTERVAL): Reduce
129         the time before a slot is considered too old and deleted.  This is
130         a workaround while I come up with a proper fix.
131
132 2005-04-21  Dick Porter  <dick@ximian.com>
133
134         * mutexes.c: 
135         * processes.c: 
136         * threads.c: 
137         * handles.c (_wapi_handle_new): Turn assertions into errors.
138
139         * collection.c (_wapi_handle_collect): Use symbols not magic
140         numbers for timeout values
141
142 2005-04-19  Dick Porter  <dick@ximian.com>
143
144         * mutexes.c: 
145         * wait.c: 
146         * handles.c (_wapi_handle_count_signalled_handles)
147         * handles-private.h (_wapi_handle_shared_lock_handle): Use new
148         shared handle locks in critical sections.
149
150         * handles.c (_wapi_handle_new_for_existing_ns): Reuse old handles
151         if there is already one there.
152         
153         * handles.c (_wapi_handle_ref): It was possible for a process to
154         exit before getting around to updating shared handle timestamps,
155         so do it here too.
156
157 Tue Apr 19 16:25:47 CEST 2005 Paolo Molaro <lupus@ximian.com>
158
159         * threads.c: fix lookup of the thread id in the has table:
160         always use the id value, not the pointer to the id.
161
162 2005-04-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
163
164         * handles.c: fix handle returned in _wapi_handle_search_handle. Dick
165         pointed it out.
166
167 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
168
169         * io-layer/sockets.c: FIONBIO with a TRUE argument means we want
170         non-blocking IO, not the other way around.
171
172 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
173
174         * handles.c:
175         * io.c:
176         * handles-private.h: GetFileType wasn't checking if we have memory
177         allocated for the handle before dereferencing it. Fixes a FileStream
178         nunit test.
179
180 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
181
182         * handles.c:
183         * processes.c:
184         * handles-private.h: we were calling g_renew to expand the handle array,
185         but that might move the memory and we might have pthread conditions or
186         mutexes in the original memory area that are being used. Now instead of
187         expanding an existing array, we just create new ones and keep a list of
188         them. Access to _wapi_private_handles had to be modified accordingly.
189
190 2005-04-15  Dick Porter  <dick@ximian.com>
191
192         * collection.c: FreeBSD needs more than PTHREAD_STACK_MIN
193
194 2005-04-14  Raja R Harinath  <rharinath@novell.com>
195
196         * wapi-private.h: Remove reference to 'daemon-private.h'.
197
198 Wed Apr 13 13:12:33 EDT 2005 Paolo Molaro <lupus@ximian.com>
199
200         * atomic.h: applied patch from mass@akuma.org (David Waite)
201         to fix InterlockedExchangeAdd.
202         Fixed a few other functions, including InterlockedCompareExchange()
203         which was miscompiled by gcc with optimizations enabled.
204
205 2005-04-13  Dick Porter  <dick@ximian.com>
206
207         * io.c (share_check): 
208         * handles.c (_wapi_handle_check_share): Refine the file check so
209         that sharing violations within the same process don't cause
210         assertion failures.
211
212 2005-04-13  Dick Porter  <dick@ximian.com>
213
214         * io.c (FindFirstFile): Fix bugs introduced with the merge (bug
215         74586)
216
217 2005-04-12  Dick Porter  <dick@ximian.com>
218         
219         The daemon-less io-layer.  Extensive lowlevel changes in
220         handles.c, requiring some corresponding changes in other files
221         calling these functions.  Private_foo structures have been
222         eliminated.
223
224         File descriptor handling differences account for most of the
225         changes in io.c and sockets.c.
226
227         Other highlights:
228         
229         * mutexes.c: Named mutexes are now a distinct type.
230         * atomic.h: Fix a PPC uninitialised variable warning.
231         * wait.c: Check conditions before waiting on a condition variable.
232         * processes.c: Handle process fork and wait without a daemon
233         (though this has the limitation of only being able to wait for
234         child processes.)
235
236 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
237
238         * io-private.h:
239         * threads.c:
240         * threads.h:
241         * io.c:
242         * sockets.c:
243         * sockets.h: removed dead code that deals with async IO.
244
245 2005-03-30  Zoltan Varga  <vargaz@freemail.hu>
246
247         * atomic.c (InterlockedIncrement): Fix fallback implementation of
248         InterlockedIncrement and InterlockedDecrement. Fixes #74228.
249
250 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
251
252         * io-layer.h: Add required header files for compiling with VS.NET.
253
254 2005-03-17 Miguel de Icaza <miguel@novell.com>
255
256         * io.c: don't fail on NFS when there are no more locks available.
257
258 2005-03-09  Dick Porter  <dick@ximian.com>
259
260         * error.c (_wapi_get_win32_file_error): ENFILE and EMFILE should
261         map to ERROR_TOO_MANY_OPEN_FILES, not ERROR_NO_MORE_FILES.  Fixes
262         bug 72671.
263
264 2005-03-09  Dick Porter  <dick@ximian.com>
265
266         * daemon.c (process_process_fork): Initialise the handle data
267         before using it in the error case.  This is probably the error
268         we're working around in the previous change.  Spotted by Taru Jain
269         <tjain@novell.com> and Hemanth Yamijala <YHemanth@novell.com>.
270
271 2005-03-07  Dick Porter  <dick@ximian.com>
272
273         * daemon.c: It looks like g_shell_parse_argv() can return
274         argv[0]=NULL somehow, yet still not give an error.  Make sure we
275         don't pass NULL to strrchr(), working around a segfault that
276         showed up on ZLM testing.
277
278 2005-03-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
279
280         * sockets.c: translate EINPROGRESS to EWOULDBLOCK in connect. This is
281         the expected error code showed by the test case in bug #73053.
282
283 2005-02-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
284
285         * io.c: another leftover.
286
287 Fri Feb 18 17:37:29 CET 2005 Paolo Molaro <lupus@ximian.com>
288
289         * io.c: fixed logic in checking errno in rev 40815.
290
291 Fri Feb 18 16:00:29 CET 2005 Paolo Molaro <lupus@ximian.com>
292
293         * threads.c: we don't depend on the GC checking tls
294         slots anymore.
295         * processes.c: remove unused ref to GC headers.
296
297 Thu Feb 17 19:57:11 CET 2005 Paolo Molaro <lupus@ximian.com>
298
299         * io.c: remove _wapi_thread_cur_apc_pending () checks
300         when the siscall should return immediatly and handle
301         the case when a syscall is interrupted without
302         erroring out, but returning a 0 read/write if possible.
303         Still the cases of read from file need to be handled.
304
305 Tue Feb 8 18:28:11 CET 2005 Paolo Molaro <lupus@ximian.com>
306
307         * threads.c: make people test with 1 MB stack per thread.
308
309 2005-01-17  Dick Porter  <dick@ximian.com>
310
311         * timefuncs.h: Make WapiFileTime endian-aware, as it's often
312         cast to and from 64bit ints.  Fixes bug 71213.
313
314 2005-01-11  Dick Porter  <dick@ximian.com>
315
316         * error.c (errno_to_WSA): Add EADDRNOTAVAIL error code
317         translation.
318
319 Mon Jan 10 16:15:19 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
320
321         * atomic.h: Fix functions on s390.
322
323 Mon Jan 10 20:30:19 CET 2005 Paolo Molaro <lupus@ximian.com>
324
325         * atomic.h: fix some functions on ppc (tests/interlocked.cs).
326
327 2005-01-10  Dick Porter  <dick@ximian.com>
328
329         * misc.c (_wapi_calc_timeout): Guard against overflow when
330         calculating timeouts.  This makes waiting with a large
331         (Int32.MaxValue) timeout not return immediately.
332
333 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
334
335         * io.c (io_ops): make this `const' so it is shareable (well, only
336         really shareable if it is statically linked...)
337
338 Mon Dec 20 11:58:33 CET 2004 Paolo Molaro <lupus@ximian.com>
339
340         * threads.c, threads.h: add accessor to get the pthread_key_t for
341         a tls id.
342
343 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
344
345         * io.c: check for the existence of 'dest' and set ERROR_ALREADY_EXISTS
346         if it exists and is not the same as 'src'.
347
348 2004-12-01 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
349
350         * atomic.h : Fix InterlockedCompareExchange for s390/s390x.
351
352 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
353
354         * processes.c: unquote the cmd path, allow for ' or " when quoting and
355         pass the quoted program name to the daemon, otherwise the call to
356         g_shell_unquote in the daemon will break things up.
357
358 2004-10-14  Dick Porter  <dick@ximian.com>
359
360         * sockets.c (_wapi_accept): Revert the previous change.  We now
361         set the accepted socket to have the same blocking status as the
362         listening socket in managed code.  This follows MS behaviour.
363         
364 2004-10-14  Dick Porter  <dick@ximian.com>
365
366         * sockets.c (_wapi_accept): On Darwin, make sure a newly
367         accept()ed socket is blocking.  Fixes bug 67355, patch by
368         grompf@sublimeintervention.com.
369
370 2004-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
371
372         * system.c: check the number of online processors instead of the
373         existing ones. Sanitize return value if it's an error.
374
375 2004-10-03 Ben Maurer  <bmaurer@ximian.com>
376
377         * system.c: Add support for getting the # of cpus.
378
379 2004-09-28  Dick Porter  <dick@ximian.com>
380
381         * io.c (pipe_close_private): Fix one small typo in the last change
382         that totally hosed process creation with redirected pipes.
383
384 2004-09-24  Dick Porter  <dick@ximian.com>
385
386         * wapi-private.h: 
387         * sockets.c: 
388         * socket-private.h: 
389         * io.c: 
390         * io-private.h: 
391         * handles-private.h: Cope when a file descriptor is reused while
392         the handle that thought it owned it is still referenced, instead
393         of asserting.  Probably fixes bug 66479, though we've been unable
394         to reproduce it.
395
396 2004-09-09  Dick Porter  <dick@ximian.com>
397
398         * error.c:
399         * io.c: Set error codes everywhere.
400
401 2004-09-06  Dick Porter  <dick@ximian.com>
402
403         * handles.c (_wapi_handle_unref): Reset the private record's type
404         (CloseHandle): Check for a fd mapping failure, and return FALSE.
405         (_wapi_handle_process_fork): Fix long-standing bug in checking
406         handle return values.  Also do the required bookkeeping with the
407         new process's handles.
408
409         * daemon.c: When creating a new process's handles, check whether
410         the shared space needs to be increased
411
412 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
413
414         * shared.c (_wapi_shm_file): Fix leaking of filename.
415
416 2004-08-19  Dick Porter  <dick@ximian.com>
417
418         * handles.c (_wapi_handle_count_signalled_handles): Fix thinko
419         introduced with the fd offset stuff: unlock handles properly when
420         backing off.  Fixes the monologue hang at exit.
421
422 2004-08-18  Dick Porter  <dick@ximian.com>
423
424         * sockets.c: 
425         * io.c: Check that new fds fit in the table, return error if not
426
427         * daemon.c (_wapi_daemon_main): 
428         * handles.c (shared_init): Have all processes agree on a size for
429         the fd table.
430
431 2004-08-17  Dick Porter  <dick@ximian.com>
432
433         * daemon.c (process_new): 
434         * handles.c (_wapi_handle_new_internal): Cope when the space
435         reserved for file descriptors is larger than the shared segment
436         size.  Fixes the crash reported when running mono under gdb on
437         macosx.
438
439 2004-08-16  Dick Porter  <dick@ximian.com>
440
441         * sockets.c:
442         * io.c:
443         * handles-private.h (_wapi_handle_fd_offset_to_handle): Improve
444         error checking with passed-in file descriptors.
445
446 2004-08-11  Dick Porter  <dick@ximian.com>
447
448         * sockets.c: 
449         * io.c: Returned handle values are the file descriptor the handle
450         encapsulates
451
452         * handles.c: 
453         * handles-private.h: 
454         * daemon.c: Reserve the range of handles that can have the same
455         values as file descriptors.  These won't be used, but the values
456         will be used as file, console, pipe or socket handles.  The fd to
457         handle mapping is done internally and is invisible to users.
458         Fixes bug 61828.
459
460         * wapi-private.h (_WAPI_HANDLE_VERSION): Increment, because we now
461         reserve a chunk of handle space.
462
463 2004-08-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
464
465         * atomic.h: add support for 64-bit S/390
466
467 2004-07-22  Dick Porter  <dick@ximian.com>
468
469         * timed-thread.c: 
470         * threads.c: Move the destruction of the internal thread data to
471         after the thread has been joined.  Fixes bug 61418.
472
473 2004-07-14  Dick Porter  <dick@ximian.com>
474
475         * wait.c (test_and_own): When not waiting for all handles to
476         become signalled, only own and return the lowest.  All the
477         documentation suggests that the old way was correct, but
478         experimentation shows it actually works like this.  Patch by
479         Sébastien Robitaille
480         (sebastien.robitaille@croesus.com), fixes bug 61511.
481
482 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
483
484         * threads.c: register roots for gc
485
486 2004-07-08  Dick Porter  <dick@ximian.com>
487
488         * io.c (file_seek): If there is a high 32bit offset part, make
489         sure the low part isn't sign-extended.  Set error codes when
490         returning failure.  Fixes bug 61131.
491
492 2004-07-06  Dick Porter  <dick@ximian.com>
493
494         * io.c (file_setfiletime): Check for underflow when converting to
495         time_t values.  Set error codes when returning failure.  Fixes bug
496         60970.
497
498 2004-07-05  Dick Porter  <dick@ximian.com>
499
500         * mutexes.c (mutex_ops_init): Make the named mutex mutex sharable.
501
502         * daemon.c (unref_handle): Only destroy a handle if all processes
503         have released it, not just the current one.  Fixes bug 60887.
504
505 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
506
507         * mono-mutex.h atomic.h: Add G_GNUC_UNUSED to static inline functions
508         to prevent warnings.
509
510 2004-06-24  Dick Porter  <dick@ximian.com>
511
512         * mutexes.c: Indicate when a named mutex was reused
513
514 2004-06-24  Dick Porter  <dick@ximian.com>
515
516         * threads.c (SuspendThread): 
517         * timed-thread.c (_wapi_timed_thread_suspend): Wrap sem_wait in a
518         while loop.  See bug 58161.
519
520 Wed Jun 23 23:29:04 CEST 2004 Paolo Molaro <lupus@ximian.com>
521
522         * io.c: don't use sharemode for on-disk file permissions: it's used
523         for shared access to the open file.
524
525 2004-06-22  Dick Porter  <dick@ximian.com>
526
527         * events.c (CreateEvent): When creating an auto-reset event that
528         is initially owned, make sure the set count starts at 1.
529
530 2004-06-18  Dick Porter  <dick@ximian.com>
531
532         * event-private.h:
533         * events.c: Auto-reset events need to release one thread for each
534         time SetEvent() is called.  Fixes bug 41292.
535
536         * threads.h:
537         * mutex-private.h:
538         * mutexes.c: Scan for mutexes that are still locked by a thread
539         when it exits.  Fixes the MS demo app linked by bug 41292.
540
541         * wait.c (test_and_own): Make sure a handle is signalled before it
542         is owned.
543
544 2004-06-16  Dick Porter  <dick@ximian.com>
545
546         * timed-thread.c: Call the thread cleanup exit routine before taking
547         the join mutex, because this could deadlock if another thread tries
548         to join in the meantime.  This fixes the hang-at-exit problem seen
549         on macos.
550
551 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
552
553         * threads.c: Implemented SleepEx.
554         * threads.h: Fixed SleepEx signature.
555
556 2004-06-03  Miguel de Icaza  <miguel@ximian.com>
557
558         * threads.c: When running under valgrind, do not allocate too much
559         stack, as Valgrind default is 1 meg.
560
561 2004-05-27  Dick Porter  <dick@ximian.com>
562
563         * io.h:
564         * io.c: Implemented LockFile() and UnlockFile()
565
566 2004-05-21  Dick Porter  <dick@ximian.com>
567
568         * io.c (CreateFile): Check for existing share modes when opening
569         a file.
570
571         * handles.c: 
572         * handles-private.h: 
573         * daemon-messages.h: 
574         * daemon.c: Maintain a hash of file share modes, keying on device
575         and inode (to cope with symlinks.)
576
577 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
578
579         * daemon-messages.c: Retry if the communication with the daemon is
580           interrupted by a signal.
581         * io.c, sockets.c: Check for EINTR in every syscall that can be interrumped. 
582           Only return an error in this case if there is something in the apc queue
583           (which means that it is an interruption requested by the "user").
584         * processes.c: Use WaitForSingleObjectEx. No need to pass "alertable" as
585           true since the wait is small.
586         * shared.c: Retry write calls when interrumped by a signal.
587         * timed-thread.h, timed-thread.c: added _wapi_thread_apc_pending, which
588           returns TRUE if there are pending asynchronous calls (APC) for the
589           provided thread. Also added _wapi_thread_dispatch_apc_queue which calls
590           the enqueued APCs. Defined a new struct ApcInfo that holds information
591           about an enqueued APC.
592         * thread-private.h, threads.c: Implemented QueueUserAPC (which does the same
593           as in win32),_wapi_thread_apc_pending and _wapi_thread_dispatch_apc_queue. 
594           These last two methods call the corresponding apc methods in 
595           thread-private using the provided thread handle.
596         * threads.h: Added QueueUserAPC.
597         * uglify.h: Added WapiApcProc (needed by QueueUserAPC).
598         * wait.c, wait.h: Changed WaitForSingleObject to WaitForSingleObjectEx, and
599           WaitForMultipleObjects to WaitForMultipleObjectsEx. Implemented support
600           for APCs in those two methods and also in SleepEx.
601
602 2004-05-17  Dick Porter  <dick@ximian.com>
603
604         * io.c (CopyFile): Speed up.  Fixes bug 57859.
605
606 2004-05-13  Dick Porter  <dick@ximian.com>
607         * mono-mutex.c (mono_mutex_unlock): Return EPERM when the current
608         thread doesn't own the mutex, rather than assert()ing.
609
610 2004-05-11  Dick Porter  <dick@ximian.com>
611
612         * shared.c (_wapi_shm_attach): Cope when a previous daemon startup
613         attempt failed, leaving shared files that look like a daemon is
614         still starting.
615
616 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
617
618         * io.c:
619         (SetFileAttributes): don't the the exec bit if the corresponding read
620         bit is not set.
621
622 2004-05-10  Zoltan Varga  <vargaz@freemail.hu>
623
624         * io.c (FindFirstFile): Fix invalid free.
625
626 2004-05-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
627
628         * io.c: translate from GFileError to errno codes and don't free
629         variables right after calling mono_io_scandir, as we may overwrite
630         errno value.
631
632 2004-05-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
633
634         * io.c: g_dir_open return ENOENT for directories on which we don't have
635         read/execute permission, while returning EPERM for anything below those.
636         So, change ENOENT by EPERM if the directory exists.
637
638 2004-05-07  Dick Porter  <dick@ximian.com>
639
640         * io.c (SetFileAttributes): Don't have failed chmod()s cause a
641         "file not found" error.  Fixes bug 54032.
642         
643 2004-05-07  Dick Porter  <dick@ximian.com>
644
645         * io.c (FindFirstFile): Comment out a windows-compatibility check
646         that breaks when directories have metachars in their names.
647         Workaround for bug 58116.
648
649 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
650
651         * io.c: fixed for FindFirstFile for empty directories. Closes
652         bug #58147.
653
654 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
655
656         * processes.c: set the start time for the current process. Fixes bug
657         #58109.
658
659 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
660
661         * io-private.h: 'namelist' is now a gchar ** in _WapiHandlePrivate_find.
662         * io.c: implemented scandir using glib functions.
663
664 2004-05-04  Dick Porter  <dick@ximian.com>
665
666         * daemon.c (read_message): Return FALSE on error so the GSource
667         callback itself can return FALSE.  Cures the infinite loop poll()
668         warning on MacosX.
669         * shared.c: Fix some daemon startup race conditions.
670
671 2004-04-29  Miguel de Icaza  <miguel@ximian.com>
672
673         * io.c (CopyFile): Use 32k buffers to copy the file instead of 2k,
674         use the stack, do not use dynamic memory.
675
676 2004-04-29  Zoltan Varga  <vargaz@freemail.hu>
677
678         * io.c: Add scandir implementation for platforms which do not have
679         it, like solaris.
680
681 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
682
683         * io.[ch]: implemented GetLogicalDriveStrings.
684
685 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
686
687         * io.c:
688         * sockets.c: use the field name from configure when accessing sigval
689         pointer field. Makes this work on the Mac.
690
691 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
692
693         * atomic.c: (InterlockedExchange) fix typo for
694         mutex name
695
696 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
697
698         * io.c:
699         * sockets.c: added check for sys/aio.h.
700
701 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
702
703         * error.[ch]: added _wapi_get_win32_file_error...
704         * io.c: ... which was _wapi_get_win32_error here.
705         * sockets.c: rename the function calls here too.
706
707 2004-04-28  Dick Porter  <dick@ximian.com>
708
709         * daemon-messages.c: Avoid a deadlock when a thread is killed while
710         waiting for the daemon by using a recursive mutex.  Helps bug 56699.
711
712 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
713
714         * io.c: fixed leak in async_notifier().
715
716         * sockets.[ch]: added AIO support for sockets and fixed WSAIoctl
717         declaration.
718
719         * threads.c: removed old comment.
720
721 2004-04-26  David Waite  <mass@akuma.org>
722
723         * daemon-messages.h:
724         * daemon-private.h
725         * error.h:
726         * io.h:
727         * processes.h:
728         * shared.h:
729         * thread-private.h:
730         * wapi-private.h: remove comma from end of enumeration declarations
731         * status.h: cast unsigned int types to int for enum assignment
732
733 2004-04-26 David Waite <mass@akuma.org>
734
735         * io.c:
736         * timefuncs.c: declare 64-bit constants as long long types (i.e.
737         10ULL)
738
739 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
740
741         * socket-wrappers.h: _wapi_socket == WSASocket now. Added
742         WSA_FLAG_OVERLAPPED.
743
744         * sockets.c: new unused parameters for _wapi_socket.
745
746 2004-04-22  Miguel de Icaza  <miguel@ximian.com>
747
748         * timed-thread.c: Replace sem_init with MONO_SEM_INIT to handle
749         the fact that MacOS X is a piece of junk (sem_init is *defined* in
750         the libc, but they return `not implemented'). 
751
752 2004-04-22  Dick Porter  <dick@ximian.com>
753
754         * handles.c: 
755         * handles-private.h: Reference the handle when it is locked, so
756         that another thread can't blow it away while we're waiting for it
757         to become signalled.
758         
759         * wait.c: 
760         * timed-thread.c: 
761         * threads.c: 
762         * sockets.c: 
763         * semaphores.c: 
764         * mutexes.c: 
765         * mono-mutex.c: 
766         * io.c: 
767         * handles.c: 
768         * handles-private.h: 
769         * events.c: 
770         * error.c: 
771         * daemon-messages.c: 
772         * critical-sections.c: 
773         * atomic.c: Added pthreads cleanup handlers and error asserts
774
775         * shared.c: 
776         * handles.c: Fixed the gcc "variable might be used uninitialised"
777         warnings.  They can't happen, but gcc doesn't know that
778         g_assert()s don't return.
779
780         Fixed the declaration of _wapi_handle_process_kill() so that it
781         expects the correct type for the pid.
782         
783         * threads.c: Removed the TLS_PTHREAD_MUTEX style locking that
784         hasn't been used in ages and just made the code more complex.
785
786 2004-04-17  Zoltan Varga  <vargaz@freemail.hu>
787
788         * processes.c: Include <signal.h> for SIGKILL and SIGILL + fix some
789         warnings. Fixes #57168.
790
791 2004-04-16  Dick Porter  <dick@ximian.com>
792
793         * threads.c (Sleep): Using div(3) with a negative (when signed)
794         numerator causes the quotient to be 0 and the remainder to be the
795         numerator.  This feeds a small negative value to nanosleep(3),
796         which will return immediately and cause a busy wait.  Fixes bug
797         56351.
798
799 2004-04-15  Dick Porter  <dick@ximian.com>
800
801         * io-private.h:
802         * io.c: Rewrite FindFirstFile and FindNextFile using scandir(3)
803         and fnmatch(3) instead of glob(3).  glob() can't cope with being
804         given filenames containing metachars.  This fixes bug 40557.
805
806 2004-04-14  Bernie Solomon  <bernard@ugsolutions.com>
807
808         * security.c: #warning is a GCC-ism
809
810 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
811
812         * security.c: Removed GetUserName as glib g_get_user_name does a
813         better (portability) job. Added ImpersonateLoggedOnUser and
814         RevertToSelf.
815
816 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
817
818         * mono-mutex.h: move pthread_mutex_timedlock declaration to...
819         * mono-mutex.c: ...here. It was causing a warning that prevented
820         libgdiplus compilation.
821
822 2004-04-04  Miguel de Icaza  <miguel@ximian.com>
823
824         * security.c (GetUserName): Make it work on MacOS X
825
826 2004-04-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
827
828         * security.c: use getpwuid_r if available. This one is thread-safe.
829
830 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
831
832         * Makefile.am: Added security.c|h.
833         * security.c: New file for security related functions. Added function
834         GetUserName to fix #56144.
835         * security.h: New. Header file for security.c
836         * wapi.h: Added include for security.h
837
838 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
839
840         * daemon-messages.h: added kill structs.
841
842         * daemon.c: implemented process_process_kill.
843         * handles-private.h:  define process_process_kill.
844         * handles.c: implemented _wapi_handle_process_kill.
845         * processes.[ch]: implemented TerminateProcess.
846
847 2004-03-25  Bernie Solomon  <bernard@ugsolutions.com>
848
849         * daemon.c (rem_fd): On solaris you seem to get an
850         error even after removing the input source so don't
851         try and rem_fd it twice.
852
853 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
854
855         * daemon.c: in process_post_mortem, If the child terminated due to the 
856         receipt of a signal, the exit status must be based on WTERMSIG, since 
857         WEXITSTATUS returns 0 in this case.
858
859 2004-03-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
860
861         * daemon.c: turned a warning into a DEBUG statement. Now we may hit it.
862
863 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
864
865         * daemon.c: only call getdtablesize () once.
866         * processes.c: wait 500 ms to check if execve failed and throw the same
867         exception as MS on failure. Fixes bug #32809.
868
869 2004-03-17  Bernie Solomon  <bernard@ugsolutions.com>
870
871         * io.c (async_notifier): use "union sigval" rather
872         than sigval_t as Solaris doesn't have sigval_t
873         (which isn't in IEEE 1003.1 either).
874
875 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
876
877         * io.c: added debug stuff and removed a few redundant lines in
878         file_write.
879
880 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
881
882         * io-private.h: added new fields for file structure. Declare
883         _wapi_io_add_callback.
884
885         * io.c: added _wapi_get_win32_error, support aio_read/write in
886         file_read/write. Implemented _wapi_io_add_callback, which is where
887         BindHandle ends up.
888         
889         * io.h: added new fields for WapiOverlapped and typedef for the
890         callback.
891
892         * processes.c: fixed off-by-one bug when handling environment variables 
893         passed in.
894
895         * threads.[ch]: implemented BindIoCompletionCallback.
896
897         * uglify.h: added typedef for LPOVERLAPPED_COMPLETION_ROUTINE.
898
899 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
900
901         * socket-wrappers.h: Remove extra semicolon.
902
903 2004-03-03  Dave Camp  <dave@ximian.com>
904
905         * daemon.c: (add_fd), (fd_activity), (_wapi_daemon_main):
906         Use a new main context.
907
908 2004-03-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
909
910         * io.c:
911         (GetFileAttributes): set the error depending on errno instead of
912         setting ERROR_FILE_NOT_FOUND always. See bug #55160.
913
914 2004-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
915
916         * io.c:
917         (CopyFile): free the buffer on error.
918         * sockets.c:
919         (WSAIoctl): free the buffer on error.
920
921 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
922
923         * error.c: fixed mapping for EPROTONOSUPPORT and ESOCKTNOSUPPORT.
924
925         * sockets.[ch]: retry creating the socket for AF_INET, SOCK_RAW
926         using IP protocol with IP over IP. Implemented WSAIoctl UNIX-style.
927
928 2004-01-27  Bernie Solomon  <bernard@ugsolutions.com>
929
930         * shared.c (_wapi_shm_file): add hostname
931         to shared data file names to handle NFS mounted
932         .wapi directories.
933
934 Mon Jan 26 16:15:03 CET 2004 Paolo Molaro <lupus@ximian.com>
935
936         * sockets.h: remove obsolete soklen_t typedef.
937
938 Fri Jan 23 21:07:02 CET 2004 Paolo Molaro <lupus@ximian.com>
939
940         * socket-wrappers.h, sockets.h, sockets.c, Makefile.am: move socket
941         wrappers to its own non-installed header file.
942
943 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
944
945         * io.c:
946         (FindFirstFile): unlock the handle if FindNextFile fails.
947         (FindNextFile): g_free a couple of pointers before retrying.
948
949         * wait.c:
950         (WaitForMultipleObjects): if only one handle provided, use
951         WaitForSingleObject.
952
953 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
954
955         * handles-private.h: (_wapi_handle_type) check
956         for segment in range before using it
957
958 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
959
960         * thread-private.h: _wapi_thread_ops is now const
961         must match .c file.
962
963 Mon Dec 22 18:29:03 CET 2003 Paolo Molaro <lupus@ximian.com>
964
965         * threads.c, timed-thread.c, timed-thread.h: use mach
966         semaphores on Darwin (MacOSX) since the posix ones
967         are mostly broken there (threads are not created suspended
968         and they can start executing before they are fully initialized
969         like in tests/thread-static.cs).
970
971 Mon Dec 22 17:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
972
973         * atomic.h: ppc fixes.
974
975 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
976
977         * handles.c: remove my bad use of MONO_ZERO_ARRAY_LENGTH
978         in HDRSIZE 
979
980 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
981
982         * shared.c: (_wapi_shm_open) make scratch file
983         not have to immediately regrow to avoid remaps
984         (HPUX can't cope with these).
985         (_wapi_shm_attach) use actual size of file
986         to set scratch data_len for the creating process.
987
988         * handles.c: (_wapi_handle_new_internal) make
989         sure mutex & cond var are initialized even for
990         non process shared ones. 
991         (_wapi_handle_unref) always call destroy 
992         routines on mutex & cond var
993
994 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
995
996         * daemon.c: change channel data structure so
997         input sources are removed from glib event loop
998         properly. xsp works better on Solaris and 
999         fixes #51278
1000
1001 2003-12-12  Bernie Solomon  <bernard@ugsolutions.com>
1002
1003         * wapi-private.h: Replace G_GNUC_PRETTY_FUNCTION
1004         definition with file & line number for non-GCC
1005         compiles.
1006
1007 2003-12-08  Bernie Solomon  <bernard@ugsolutions.com>
1008
1009         * Makefile.am: make sure hppa_atomic.s is in distribution
1010
1011 2003-12-01  Dick Porter  <dick@ximian.com>
1012
1013         * wapi-private.h: 
1014         * mutexes.c (CreateMutex): 
1015         * mutex-private.h (struct _WapiHandle_mutex): 
1016         * handles.c: Look up certain handle types by name, in a shared
1017         namespace.  Currently only mutex handles have this implemented.
1018         Fixes bug 51089.
1019
1020         * semaphores.c (CreateSemaphore): 
1021         * events.c (CreateEvent): Fix signature
1022
1023 2003-11-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1024
1025         * io.c: don't call g_free before testing errno as it may modify it.
1026         If the path exists, return an error if it's not a directory. Fixes
1027         bug #50753.
1028
1029 2003-11-20  Dick Porter  <dick@ximian.com>
1030
1031         * io.c: Missed a little-endian UTF16 conversion.  Patch from
1032         Jeroen Zwartepoorte (Jeroen@xs4all.nl), fixes bug 51065.
1033
1034 2003-10-29  Dick Porter  <dick@ximian.com>
1035
1036         * io.c (MoveFile): If the move crosses filesystems, try and fall
1037         back to copy and delete.  Patch from Jörg Rosenkranz
1038         (JoergR@voelcker.com), fixes bug 50298.
1039
1040 2003-10-28  Dick Porter  <dick@ximian.com>
1041
1042         * io.c: Use the new encoding conversion to cope with non-utf8
1043         locales in filenames.
1044
1045         * processes.c: Ditto for process arguments.
1046
1047 Tue Oct 21 12:01:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
1048
1049         * atomic.h: some ppc inline asm fixes (incorrect use of labels, 
1050         incorrect register constraints, incorrect clobber lists).
1051
1052 2003-10-13  Bernie Solomon  <bernard@ugsolutions.com>
1053
1054         * Makefile.am hppa_atomic.s: add HP 64bit
1055         implementation of atomic ops
1056
1057 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
1058
1059         * threads.c (CreateThread): Wrap pthread_attr_setstacksize call in
1060         a conditional for platforms that don't have it.
1061
1062 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
1063
1064         * threads.c: (CreateThread) use stacksize argument
1065         if non-zero - change default for 64 bits to 4Mb
1066
1067 2003-09-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1068
1069         * sockets.c: set last error when socket creation fails. This shed some
1070         light on bug #49015.
1071
1072 2003-09-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1073
1074         * processes.c: fixed bug #48973: we only change \ by / for the argument
1075         to be used as command.
1076         When getting the program name from the args, don't let the space between
1077         them in the args.
1078
1079 2003-09-24  Bernie Solomon <bernard@ugsolutions.com>
1080
1081         * atomic.h atomic.c: fix sparc so lock is
1082         global, increment does so and it compiles under Sun compiler.
1083
1084 2003-09-22  Bernie Solomon <bernard@ugsolutions.com>
1085
1086         * handles.c: include <string.h> directly as may
1087         not be nested in <sys/un.h> like Linux
1088
1089 2003-09-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1090
1091         * io.c:
1092         (DeleteFile): call SetLastError on failure. Fix by
1093         richard.torkar@htu.se (Richard Torkar). Closes bug #48222.
1094
1095 2003-09-15  Lluis Sanchez Gual  <lluis@ximian.com>
1096
1097         * daemon.c: In compare_process(), discard handles already signalled.
1098
1099 2003-09-02  Dick Porter  <dick@ximian.com>
1100
1101         * io.c: Work around glib brain-dead assumptions about utf8-encoded
1102         filenames.  Fixes bug 30781.
1103
1104 2003-08-28  Dick Porter  <dick@ximian.com>
1105
1106         * critical-sections.c:  Patch from Bernie Solomon
1107         <bernard@ugsolutions.com> to emit a warning if locking a critical
1108         section fails.
1109
1110 2003-07-23  Dick Porter  <dick@ximian.com>
1111
1112         * shared.c:
1113         * daemon.c (maybe_exit): Avoid the race condition when the daemon is
1114         closing but another client comes along when the shared data is still
1115         visible.  Should fix bugs 33671 and 35213.
1116
1117 2003-07-23  Dick Porter  <dick@ximian.com>
1118
1119         * handles.c:  Initialise handle mutex and cond.  Fix by
1120         Bernie Solomon <bernard@ugsolutions.com>
1121
1122 2003-07-15  Dick Porter  <dick@ximian.com>
1123
1124         * timed-thread.c (timed_thread_start_routine): Fix virtual memory
1125         leak when threads quit.  Fixes bug 44067.
1126
1127 Wed Jun 18 19:08:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
1128
1129         * io.c: never add write permission for group or others in
1130         SetFileAttributes ().
1131
1132 2003-06-17  Dick Porter  <dick@ximian.com>
1133
1134         * io.c (SetFileAttributes): Implement the ReadOnly attribute, and
1135         ignore the unsupported ones ("fixes" bug 44977).
1136
1137 2003-06-17  Lluis Sanchez Gual  <lluis@ximian.com>
1138
1139         * misc.c: fix bug in _wapi_calc_timeout. It gave wrong values for
1140           high ms values (there was an overflow).
1141
1142 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
1143
1144         * system.h (struct _WapiSystemInfo ): Fix warnings when using gcc-3.3.
1145
1146 2003-06-11  Dick Porter  <dick@ximian.com>
1147
1148         * shared.c: Fix shared directory creation.  Patch from
1149         Pablo Baena <pbaena@uol.com.ar>
1150
1151 2003-06-10  Dick Porter  <dick@ximian.com>
1152
1153         * atomic.c: Delete the useless compile warning
1154
1155 2003-06-09  Dick Porter  <dick@ximian.com>
1156
1157         * daemon.c: Lookup env as a string array.  Fixes bug 44289.  Also
1158         make setting the process handle value in the environment actually
1159         work.
1160
1161         * processes.c: Pretty up the process name, if it happens to be
1162         "mono" such as when another mono process forks "mono foo.exe"
1163
1164 2003-06-05  Dick Porter  <dick@ximian.com>
1165
1166         * processes.c (process_set_current): Don't do an expensive handle
1167         search at application startup, check the environment to see if the
1168         process handle has already been created.
1169
1170         * io.c: Don't do an expensive handle search when creating stdin,
1171         stdout and stderr handles, just create them all the first time one
1172         is requested.
1173
1174         * wapi-private.h:
1175         * shared.c:
1176         * shared.h:
1177         * handles.c:
1178         * handles-private.h:
1179         * daemon-messages.h:
1180         * daemon-private.h:
1181         * daemon.c: Support for "unlimited" number of handles and scratch
1182         data.
1183
1184         Speed up application startup by passing process handle in the
1185         environment, rather than let the app scan all handles (which gets
1186         really slow when there are more than a few thousand to check.)
1187
1188         Initialise some structs passed to syscalls, noticed by valgrind.
1189         
1190
1191 2003-05-20  Dick Porter  <dick@ximian.com>
1192
1193         * io.c (FindFirstFile): Include . files in the glob.  Fixes bug
1194         43229.
1195
1196 2003-05-19  Dick Porter  <dick@ximian.com>
1197
1198         * threads.c: Set the new thread's stack size to 2M.  Fix needed
1199         for BSD, reported by Martin Dvorak <md@9ll.cz>
1200
1201 2003-05-16  Dick Porter  <dick@ximian.com>
1202
1203         * io.h:
1204         * io.c: Implement GetTempPath()
1205
1206 2003-05-16  Dick Porter  <dick@ximian.com>
1207
1208         * processes.c (CreateProcess): Set some error codes
1209
1210 2003-05-12  Dick Porter  <dick@ximian.com>
1211
1212         * misc.c (_wapi_calc_timeout): Cope with overflowing tv_nsec.
1213         Patch from Martin Dvorak <mdvorak@ninell.cz>.
1214
1215 2003-05-10  Dick Porter  <dick@ximian.com>
1216
1217         * io.c (CopyFile): Copy file mode as well as file data.  Based on
1218         suggestion by Giuseppe Greco <giuseppe.greco@agamura.com>, bug
1219         42706.
1220
1221 2003-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1222
1223         * handles.c: don't call GC_gcollect when creating new handles.
1224
1225 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1226
1227         * handles.c: added some debugging code. Call GC_gcollect
1228         before creating a new handle. It makes Lupus' test run smoother and
1229         faster (from 62 to 83 request per second). Notice that calling
1230         GC_finalizer_notifier if needed (GC_should_invoke_finalizer ()) does
1231         not improve nor degrade the performance, so i don't do it.
1232
1233 2003-05-02  Dick Porter  <dick@ximian.com>
1234
1235         * sockets.c: Rearrange closesocket() and socket_close_private(),
1236         and remember to unref the handle, so we don't leak socket handles.
1237         Fix from Pelle Johnsen <pelle.johnsen@mail.dk>
1238
1239 2003-04-11  Dick Porter  <dick@ximian.com>
1240
1241         * atomic.h: ARM atomic operations by Malte Hildingson
1242         <tds00mahi@tellus.thn.htu.se>
1243
1244 Tue Apr 8 11:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
1245
1246         * atomic.h: fix macosx build by "Urs C. Muff" <umuff@quark.com>.
1247
1248 2003-04-03  Martin Baulig  <martin@ximian.com>
1249
1250         The following change is conditional to `WITH_INCLUDED_LIBGC'
1251         which is not yet enabled by default.
1252
1253         * threads.c (SuspendThread, ResumeThread): Fully implemented this.
1254         (gc_init): New static function; install a signal handler for
1255         SIGPWR which is used to suspend threads.  [FIXME: it SIGPWR
1256         doesn't exist on all Unix systems, we need to find another
1257         signal].
1258         (mono_wapi_push_thread_stack): New public function.  Tells the
1259         garbage collector about the current stack pointer of a suspended
1260         thread.
1261
1262 2003-04-03  Martin Baulig  <martin@ximian.com>
1263
1264         * timed-thread.h (TimedThread): Added `suspended_sem',
1265         `suspend_count' and `stack_ptr'.
1266
1267 2003-03-28  Dick Porter  <dick@ximian.com>
1268
1269         * atomic.h: PPC support gratiously donated to the public domain
1270         by John Duncan <jddst19@mac.com>
1271
1272 2003-03-20  Dick Porter  <dick@ximian.com>
1273
1274         * sockets.c (_wapi_connect): If connect() fails with EACCES, try
1275         setting SO_BROADCAST and connecting again.  Fixes bug 39178.
1276
1277 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1278
1279         * processes.c: included Jerome Laban's patch and call SetLastError when
1280         the executable is not found.
1281
1282 2003-03-03  Dick Porter  <dick@ximian.com>
1283
1284         * io.c (CreateFile): Try opening directories readonly, so that
1285         timestamps can be adjusted.  Patch by Elan Feingold
1286         <efeingold@mn.rr.com>.
1287
1288 2003-02-25  Dick Porter  <dick@ximian.com>
1289
1290         * shared.c (_wapi_shm_attach): Return a failure code on system
1291         call errors, rather than exiting.
1292
1293 2003-02-21  Dick Porter  <dick@ximian.com>
1294
1295         * processes.c (GetCurrentProcessId): Use the current process
1296         handle to return the process ID, as getpid() is unreliable
1297         (linuxthreads gives each thread a different pid).  Fixes bug
1298         37550.
1299
1300 2003-02-21  Dick Porter  <dick@ximian.com>
1301
1302         * io.c (FindNextFile): Skip over dangling symlinks.  Fixes bug
1303         34076.
1304
1305 2003-02-11  Dick Porter  <dick@ximian.com>
1306
1307         * timefuncs.h: 
1308         * timefuncs.c: Added GetTickCount()
1309
1310 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1311
1312         * error.c: added WSA_EHOSTUNREACH mapping.
1313
1314 2003-01-26  Miguel de Icaza  <miguel@ximian.com>
1315
1316         * io.c (SetFileAttributes): This routine is not currently
1317         implemented for the general case, but I added a special case to
1318         set the executable bit on Linux.
1319
1320 Wed Jan 15 15:55:40 CET 2003 Paolo Molaro <lupus@ximian.com>
1321
1322         * sockets.h, daemon.c, io.c: compilation fixes on MacOSX.
1323
1324 2003-01-08  Dick Porter  <dick@ximian.com>
1325
1326         * sockets.c: Fixed setting blocking mode to true (fixes bug 36388)
1327
1328 2002-12-11  Juli Mallett  <jmallett@FreeBSD.org>
1329
1330         * daemon.c, handles-private.h, handles.c, wapi-private.h:
1331         Check for an implementation which says it supports
1332         _POSIX_THREAD_PROCESS_SHARED, rather than just one that
1333         defines the symbol.  Defined but with a value of -1 still
1334         means that it is unsupported.
1335
1336 2002-12-08  Martin Baulig  <martin@ximian.com>
1337
1338         * handles.c (_wapi_handle_new): Create new non-shared handles with
1339         an initial refcount of 1, not 0.
1340
1341 2002-11-22  Dietmar Maurer  <dietmar@ximian.com>
1342
1343         * threads.c (TlsGetValue): removed unnecessary mutex
1344
1345 2002-11-20  Dick Porter  <dick@ximian.com>
1346
1347         * timed-thread.c (_wapi_timed_thread_attach): Attached threads
1348         need to store their data structure too.
1349
1350         * threads.c: Make sure the threading data is initialised wherever
1351         it is needed
1352
1353 2002-11-15  Dick Porter  <dick@ximian.com>
1354
1355         * timed-thread.c: Removed unneeded parameters in
1356         _wapi_timed_thread_attach().
1357
1358         * threads.c: Renamed AttachThread() to make it not look like
1359         external API.  Removed unneeded parameters.
1360
1361 2002-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1362
1363         * error.[ch]: added errno_to_WSA (). It displays a warning and return
1364         WSASYSCALLFAILURE if there is no error mapping for the given errno,
1365
1366         * sockets.c: use errno_to_WSA and fixed display of warning for h_errno.
1367
1368 2002-10-31  Dick Porter  <dick@ximian.com>
1369
1370         * io.h: 
1371         * io.c: Define and use INVALID_FILE_ATTRIBUTES
1372
1373 2002-10-07  Dick Porter  <dick@ximian.com>
1374
1375         * timefuncs.c:
1376         * daemon.c: Use a more accurate time source for process start and
1377         end times.
1378
1379 2002-10-03  Dick Porter  <dick@ximian.com>
1380
1381         * daemon.c:
1382         * handles.c:
1383         * threads.c:  Fixes for freebsd.  Make sure that mutex and condition
1384         creation and deletion happen in the process that owns them, when
1385         POSIX shared thread objects aren't supported.  This breaks on
1386         freebsd, as pthread_t is a pointer to data.
1387
1388 2002-10-02  Dick Porter  <dick@ximian.com>
1389
1390         * shared.c: Use mmap() instead of sysv shm for the shared data.
1391
1392         * wapi-private.h (_WAPI_HANDLE_VERSION): Reset back to 0, for the
1393         new system
1394
1395         * daemon-private.h: 
1396         * daemon.c: mmap()ed regions survive fork, so just pass the
1397         pointer to _wapi_daemon_main instead of mapping it again.
1398
1399 2002-10-01  Dick Porter  <dick@ximian.com>
1400
1401         * timed-thread.c: Kludge for CREATE_SUSPENDED thread creation.
1402         Unfortunately libgc uses the same thread suspend technique that I
1403         want to, and the two don't mix: libgc will deadlock when it tries
1404         to stop the world if a thread has already been suspended by
1405         someone else.  Just do the simple suspended create rather than the
1406         general purpose thread suspension for now.
1407
1408         * threads.c: Pass create flags to the timed_thread create call, to
1409         implement suspended thread creation.  ResumeThread() partially
1410         implemented, to cope with the case where a newly created but
1411         suspended thread is launched.
1412
1413 2002-09-30  Dick Porter  <dick@ximian.com>
1414
1415         * sockets.c (ioctlsocket): Set non-blocking mode in a better way,
1416         with fcntl.
1417
1418 2002-09-27  Dick Porter  <dick@ximian.com>
1419
1420         * semaphores.c: Only include semaphore.h if it's present. Patch
1421         for BSD from jmmv@hispabsd.org (Julio Merino).
1422
1423 2002-09-27  Dick Porter  <dick@ximian.com>
1424
1425         * processes.c: Pass environment and working directory to the
1426         daemon when forking.  Don't let argv[0] be duplicated when looking
1427         for the program name.  Implement EnumProcessModules (simple
1428         version for now, lsof-style later if needed), GetModuleBaseName,
1429         {Get,Set}ProcessWorkingSetSize (just faked, because the vm hints
1430         aren't available on Linux).
1431
1432         * process-private.h: Store the process name, and the working set
1433         min and max
1434
1435         * handles.c:
1436         * handles-private.h: New functions to store and retrieve an array
1437         of strings in the scratch space
1438
1439         * daemon.c: Don't miss deleting some handles when a client exits
1440         (we used to rely on the client doing the final cleanup, but
1441         obviously if the client is no longer there the daemon has to do
1442         it).
1443
1444         Process forking now sets the environment and the working
1445         directory.
1446
1447         * io.c: Don't confuse fd 0 with an unassigned handle struct
1448
1449         * atomic.h: Add a google cache alternative to the msdn URL
1450
1451 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1452
1453         * sockets.c:
1454         (_wapi_recvfrom): added ECONNRESET to the switch.
1455
1456 2002-09-24  Mark Crichton  <crichton@gimp.org>
1457
1458         * atomic.h: Yea.  On linux, sparc isn't sparc, it's __sparc__.
1459         Added to ifdef.
1460
1461 2002-09-19  Mark Crichton  <crichton@gimp.org>
1462
1463         * daemon.c, shared.c: Added NEED_LINK_UNLINK for systems that
1464         dont have Linux's abstract filesystem for sockets.
1465
1466 2002-09-19  Mark Crichton  <crichton@gimp.org>
1467
1468         * atomic.h: Added SPARC atomic asm code.
1469         * daemon.c, handles-private.h, handles.c, wapi-private.h:
1470         undefined _POSIX_THREAD_PROCESS_SHARED.  This actually exists on
1471         Solaris 9, however, the code paths don't seem to work.  More testing
1472         on the shared case is *really* needed.
1473
1474 2002-09-03  Dick Porter  <dick@ximian.com>
1475
1476         * threads.h: 
1477         * threads.c: Removed PosixKillThread(), because it's not in the
1478         w32 api
1479
1480 2002-08-20  Dick Porter  <dick@ximian.com>
1481
1482         * handles.c (_wapi_handle_scratch_store): Made stored byte lengths
1483         multiples of 4 bytes, to keep header structures aligned.  Needed
1484         for sparc, at least. (Patch from crichton@gimp.org)
1485
1486         * handles.c: Removed 'disable_shm' variable (we've defaulted to
1487         building with shm enabled for months now)
1488
1489 2002-08-19  Dick Porter  <dick@ximian.com>
1490
1491         * daemon.c: Rewrote the poll() loop to use GIOChannels instead,
1492         for legacy NeXT-based systems.
1493
1494 2002-08-12  Dick Porter  <dick@ximian.com>
1495
1496         * atomic.h: Rename some parameters to avoid c++ keywords (Patch
1497         from Joseph Wenninger <kde@jowenn.at>)
1498
1499 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
1500
1501         * threads.c: use fast spinlocks by default
1502
1503 2002-08-02  Dick Porter  <dick@ximian.com>
1504
1505         * io.c (GetStdHandle): Add a handle reference when returning a
1506         duplicate console handle.  This fixes the unref_handle errors in
1507         NUnit.
1508
1509 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
1510
1511         * threads.c (TLS_PTHREAD_MUTEX): define this because else some
1512         tests does not work
1513
1514 2002-08-01  Dick Porter  <dick@ximian.com>
1515
1516         * threads.c: Use atomic spinlocks in TLS functions
1517
1518         * mono-spinlock.h:
1519         * Makefile.am: Added mono-spinlock.h
1520
1521 2002-07-21  Jeffrey Stedfast  <fejj@ximian.com>
1522
1523         * daemon-messages.c: #include <sys/types.h> and <sys/sockets.h> -
1524         these are needed for sendmsg() and also for struct msghdr (at
1525         least on Solaris). Solaris still won't build because struct msghdr
1526         doesn't have msg_flags, msg_control, or msg_controllen members.
1527         (CMSG_SPACE): Define for systems that don't have it.
1528         (CMSG_LEN): Same.
1529
1530 2002-07-20  Dick Porter  <dick@ximian.com>
1531
1532         * wapi-private.h:
1533         * io-private.h:
1534         * io.h:
1535         * io.c:
1536         * handles.c: Implemented pipe handles
1537         
1538         * handles.c:
1539         * daemon.c: Fixed bug in handle closing.
1540
1541         * shared.c:
1542         * daemon.c: Forked processes now close all open file descriptors.
1543
1544 Fri Jul 19 19:05:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
1545
1546         * sockets.h, io-layer.h, critical-sections.h: don't include config.h
1547         in header files.
1548
1549 2002-07-19  Martin Baulig  <martin@gnome.org>
1550
1551         * threads.c (ExitThread): Call exit() if no threads has been
1552         created yet.
1553
1554 2002-07-17  Dick Porter  <dick@ximian.com>
1555
1556         * daemon-messages.c: Freebsd fixes from Andreas Kohn
1557         <andreas.kohn@gmx.net>
1558
1559 2002-07-15  Dick Porter  <dick@ximian.com>
1560
1561         * io.c: Removed bogus console_flush() method, that was just cut
1562         and pasted from file_flush when I separated the two handle types.
1563
1564 2002-07-12  Dick Porter  <dick@ximian.com>
1565
1566         * io.c (convert_from_flags): Fixed misunderstanding wrt fcntl
1567         flags.  Fixes bug 27633.
1568
1569 2002-07-12  Dick Porter  <dick@ximian.com>
1570
1571         * wapi-private.h:
1572         * handles.c:
1573         * daemon.c: Use size of sockaddr_un.sun_path from config.h
1574
1575 2002-07-12  Dick Porter  <dick@ximian.com>
1576
1577         * processes.c (CreateProcess): Send stdin, stdout and stderr
1578         handles if the startup info doesnt specify new ones
1579
1580         * io.c (GetStdHandle): Return the same handle when the same
1581         standard handle is requested
1582
1583         * handles.c: Pass file descriptors when forking
1584
1585         * daemon.c: Use supplied file descriptors when forking a new
1586         process
1587
1588         * daemon-messages.h: 
1589         * daemon-messages.c: Pass stdin, stdout and stderr file
1590         descriptors to the daemon (used when forking)
1591
1592 2002-07-11  Miguel de Icaza  <miguel@ximian.com>
1593
1594         * daemon.c (_wapi_daemon_main): Use sizeof
1595         (main_socket_address.sun_path) instead of hardcoded 108 value.
1596
1597         * handles.c (shared_init): Use sizeof
1598         (shared_socket_address.sun_path) instead of hardcoded 108 value.
1599
1600 2002-07-10  Dennis Haney  <davh@davh.dk>
1601
1602         * shared.c:
1603         * handles.c:
1604         * daemon.c: Lots of documentation, some added error checking, and
1605         code readability improvements.
1606
1607         * daemon-messages.h: Add the Error request type to improve error
1608         checking.
1609
1610         * daemon-messages.c: Do a bit more error checking on send() and
1611         recv(), and log errors with a higher severity level.
1612
1613 2002-07-04  Dick Porter  <dick@ximian.com>
1614
1615         * daemon.c (process_process_fork): Fix argument handling, due to
1616         buggy understanding of g_strsplit() behaviour.
1617
1618 2002-07-03  Dick Porter  <dick@ximian.com>
1619
1620         * threads.h:
1621         * threads.c: Implement OpenThread().  Define access-control values
1622         for thread handles.
1623
1624         * wapi.h:
1625         * processes.h:
1626         * access.h:
1627         * Makefile.am: Added access.h, to hold shared access-control
1628         definitions
1629
1630 2002-07-02  Dick Porter  <dick@ximian.com>
1631
1632         * wapi-private.h (_WAPI_HANDLE_VERSION): New protocol version
1633         
1634 2002-07-02  Dick Porter  <dick@ximian.com>
1635
1636         * handles.c (shared_init): Make a second attempt to contact the
1637         daemon if the shared memory attach succeeds, but the connect()
1638         fails. (This copes with the daemon crashing without cleaning up
1639         the shared memory.)
1640
1641         * Makefile.am: 
1642         * daemon-private.h:
1643         * daemon.c:
1644         * shared.c (_wapi_shm_attach): Don't exec() anything when we fork
1645         the daemon, it's now built into the library.
1646
1647 2002-06-25  Dick Porter  <dick@ximian.com>
1648
1649         * handles.c:
1650         * handles-private.h:
1651         * daemon-messages.h:
1652         * daemon.c: Process forking and handle data management
1653
1654         * processes.h:
1655         * process-private.h:
1656         * processes.c: Process forking and other support functions
1657
1658 2002-06-25  Dick Porter  <dick@ximian.com>
1659
1660         * versioninfo.h: PE resource decoding
1661
1662         * unicode.c (_wapi_unicode_to_utf8): g_utf16_to_utf8 doesnt need
1663         to be told the string length
1664
1665         * io.c: Removed the ACTUALLY_DO_UNICODE option.  Fixed some leaks.
1666         Moved _wapi_time_t_to_filetime and the WapiFileTime typedef to
1667         timefuncs.c
1668
1669 2002-06-12  Dick Porter  <dick@ximian.com>
1670
1671         * daemon.c: 
1672         * daemon-messages.c: Handle SIGPIPE in a non-stupid way in the
1673         daemon, if MSG_NOSIGNAL isn't available.  Thanks to Jaroslaw
1674         Kowalski <jarek@atm.com.pl> for pointing out the bogosity.
1675
1676 2002-06-10  Jaroslaw Kowalski <jarek@atm.com.pl>
1677
1678         * sockets.c, daemon-messages.c: Prevent SIGPIPE from being raised
1679         when writing to a closed socket.
1680
1681 2002-06-08  Jeffrey Stedfast  <fejj@ximian.com>
1682
1683         * mono-mutex.c (mono_once): New convenience function for my
1684         previous fix.
1685
1686         * handles.c:
1687         * error.c: 
1688         * critical-sections.c: 
1689         * threads.c: 
1690         * sockets.c: 
1691         * semaphores.c: 
1692         * processes.c: 
1693         * mutexes.c: 
1694         * io.c: 
1695         * events.c: 
1696         * atomic.c: Use mono_once() rather than pthread_once().
1697
1698 2002-06-06  Jeffrey Stedfast  <fejj@ximian.com>
1699
1700         * handles.c (_wapi_handle_new): pthread_once() is not atomic, so
1701         if multiple threads all try to call _wapi_handle_new() before the
1702         shared data has been initialized, it is possible that we could get
1703         into a condition where shared_init() is being executed and later
1704         threads will pass by pthread_once() due to the fact that it has
1705         already been called and so therefor will attempt to use the shared
1706         data before it has been completely initialized. If we instead use
1707         a standard mutex locking mechanism around shared_init(), we can
1708         avoid the situation entirely. By wrapping the mutex locking in a
1709         check to see if we've already initialized the data, we can even
1710         avoid wasting resources by having to lock/unlock the mutex in any
1711         later calls (the only time we'd have to worry about
1712         locking/unlocking is the initial race to call shared_init() at
1713         startup).
1714
1715 Sat Jun 1 13:27:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
1716
1717         * atomic.h: inline asm fixes from Dennis Haney (davh@davh.dk).
1718
1719 Fri May 31 16:21:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
1720
1721         * daemon.c, handles.c: rename "sun" local var since it's apparently
1722         a #define on Solaris.
1723
1724 Fri May 31 15:40:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
1725
1726         * daemon-messages.c: work-around MSG_NOSIGNAL missing on some
1727         platforms.
1728
1729 2002-05-15  Dick Porter  <dick@ximian.com>
1730
1731         * wait.c: Fix a deadlock in WaitForMultipleObjects
1732
1733 2002-05-14  Dick Porter  <dick@ximian.com>
1734
1735         * io.c: Fix a cut&paste error, found by
1736         Jaroslaw Kowalski <jarek@atm.com.pl>
1737
1738 2002-05-10  Dan Lewis  <dihlewis@yahoo.co.uk>
1739
1740         * io.c: Nasty typo.
1741
1742 2002-05-09  Dick Porter  <dick@ximian.com>
1743
1744         * threads.c: 
1745         * semaphores.c: 
1746         * processes.c: 
1747         * mutexes.c: 
1748         * handles-private.h: 
1749         * events.c: 
1750         * Makefile.am: Remove now-unused file wait-private.h
1751
1752 2002-05-08  Dick Porter  <dick@ximian.com>
1753
1754         * shared.c: Better error messages, and report when daemon
1755         connection fails rather than blocking forever.  Do some more
1756         shared memory sanity checking.
1757
1758         * handles.c: Better error messages when connecting to shared
1759         memory and the handle daemon.  Fall back to non-shared handles if
1760         an error occurs.  Set the default back to 'shared handles'.  Fix a
1761         crashing bug in scratch space allocation that mangled the block
1762         headers.
1763
1764 2002-05-07  Miguel de Icaza  <miguel@ximian.com>
1765
1766         * handles.c (shared_init): Disable SHM for now, people have too
1767         many problems with this, and the diagnostics are not helping.
1768
1769 2002-05-06  Dan Lewis  <dihlewis@yahoo.co.uk>
1770
1771         * io.c: CreateFile sets win32 last error.
1772
1773 2002-05-05  Dick Porter  <dick@ximian.com>
1774
1775         * wapi-private.h: 
1776         * handles-private.h:
1777         * io.c: 
1778         * io-private.h:
1779         * mutexes.c: 
1780         * mutex-private.h: 
1781         * processes.c: 
1782         * process-private.h: 
1783         * semaphores.c: 
1784         * semaphore-private.h: 
1785         * sockets.c: 
1786         * socket-private.h: 
1787         * events.c: 
1788         * event-private.h: Simplify the WapiHandleOps struct: take out all
1789         the file-specific entries, leaving just the items that operate on
1790         handles themselves.  Split the close operation into shared and
1791         private parts: shared close is called by the daemon.
1792
1793         * handles.c: As above, but also pass handle allocation, ref and
1794         unref operations to the daemon.  Populate the handle_ops array at
1795         compile time, because the daemon needs to call ops on handles too.
1796         Don't bother to track open handle counts any more, the daemon does
1797         that.
1798         
1799         * threads.c: 
1800         * thread-private.h: As above, but also make the thread data
1801         handle-private.
1802
1803         * shared.c: Fork a handle daemon if the calling process created
1804         the shared memory segment.
1805
1806         * daemon.c:
1807         * daemon-messages.c:
1808         * daemon-messages.h:
1809         * Makefile.am: Build a daemon to manage handle allocation and
1810         destruction without needing to lock the shared memory
1811
1812 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
1813
1814         * atomic.c: Changed to use a normal mutex rather than a spinlock
1815         since a lot of platforms seem to not have them :\
1816
1817 2002-04-30  Dick Porter  <dick@ximian.com>
1818
1819         * Completely rewrote the handle waiting code: removed the helper
1820         thread and its attendant complexity.  All handle waiting is now
1821         abstracted into the WaitForSingleObject() and
1822         WaitForMultipleObjects() functions.
1823
1824         * Implemented inter-process sharing of handles using sysv shared
1825         memory.  This makes handles even more opaque, with a handle now
1826         just an index into an array.
1827         
1828 2002-04-25  Dan Lewis  <dihlewis@yahoo.co.uk>
1829
1830         * io.c: unitialized pointer in GetCurrentDirectory.
1831
1832 Sat Apr 20 13:37:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
1833
1834         * threads.c: destroy the mutex at thread destruction
1835         (if/when thread destruction code will be actually called).
1836         When protecting a tls data pointer from the gc, use also the 
1837         thread id in the key.
1838         
1839 Wed Apr 17 18:36:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
1840
1841         * timed-thread.c: avoid race condition when setting the thread to
1842         detached.
1843
1844 2002-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1845
1846         * jit.h: to more #include lines to avoid breaking compilation
1847         under windows when upgrading mingw and w32api to version
1848         1.3 (thanks Dick!).
1849
1850 2002-04-16  Dick Porter  <dick@ximian.com>
1851
1852         * atomic.h: Explanatory comment about lack of 80386 support
1853
1854 2002-04-15  Dick Porter  <dick@ximian.com>
1855
1856         * atomic.h: use xaddl for InterlockedIncrement() and
1857         InterlockedDecrement().  Use cmpxchgl in a loop for
1858         InterlockedExchange() and InterlockedExchangePointer().
1859
1860 Mon Apr 15 13:31:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
1861
1862         * unicode.c: fix unicode_len() to not access uninitialized memory
1863         (and updated to conform to mono code style).
1864
1865 Fri Mar 29 17:15:11 CET 2002 Paolo Molaro <lupus@ximian.com>
1866
1867         * io.c: EEXISTS is ignored for directory creation.
1868         * mono-mutex.h: remove silly "pragma }" that emacs users insert
1869         because they use a broken editor:-)
1870
1871 2002-03-28  Dick Porter  <dick@ximian.com>
1872
1873         * sockets.h: 
1874         * sockets.c: 
1875         * io.c: 
1876         * handles.h: 
1877         * handles.c: Warning cleanups
1878
1879 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
1880
1881         * unicode.h, unicode.c: changed to gunichar2
1882         * io.h, io.c: changed strings to gunichar2*, added
1883         SetFileAttributes(), GetCurrentDirectory(), SetCurrentDirectory(),
1884         some fixes to FindFirstFile() and friends.
1885
1886 2002-03-26  Dick Porter  <dick@ximian.com>
1887
1888         * types.h: Implement the large integer struct
1889
1890         * timefuncs.h:
1891         * timefuncs.c: Dummy functions that don't yet implement
1892         QueryPerformanceCounter() and QueryPerformanceFrequency()
1893
1894         * threads.h:
1895         * threads.c: Implement SleepEx()
1896
1897         * system.h:
1898         * system.c: Beginnings of GetSystemInfo()
1899
1900         * mono-mutex.c (pthread_mutex_timedlock): Fix a ms/ns conversion
1901         thinko
1902
1903         * context.h:
1904         * context.c: Dummy function that doesnt yet implement
1905         GetThreadContext()
1906
1907         * atomic.h: 
1908         * atomic.c: Interlocked functions
1909
1910 Mon Mar 25 13:01:40 CET 2002 Paolo Molaro <lupus@ximian.com>
1911
1912         * threads.c: use a gc-safe hash table to store tls pointers.
1913
1914 2002-03-22  Dick Porter  <dick@ximian.com>
1915
1916         * threads.c: Fix a race condition where a thread can start and
1917         exit before the handle has been properly initialised (no reason
1918         why the handle couldn't be initialised beforehand, so do so)
1919
1920         Fix a ms to ns conversion magnitude thinko.
1921
1922 2002-03-21  Dick Porter  <dick@ximian.com>
1923
1924         * semaphores.c: Fix a problem when waiting for one or more
1925         semaphores, and another semaphore is Released (all waiting
1926         semaphores assumed they were signalled)
1927
1928 2002-03-29  Dan Lewis <dihlewis@yahoo.co.uk>
1929
1930         * io.h, io.c, uglify.h: added MoveFile, CopyFile, CreateDirectory,
1931         RemoveDirectory, GetFileAttributes, GetFileAttributesEx
1932
1933 2002-03-19  Dietmar Maurer  <dietmar@ximian.com>
1934
1935         * threads.c (Sleep): bug fix: 1ms == 1000000ns
1936
1937 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
1938
1939         * io.h, io.c, events.c, mutexes.c, semaphores.c, sockets.c,
1940         threads.c, io.c: added flush method to handles.
1941
1942         * io.c: FlushFileBuffers() and FindFirstFile() functions.
1943
1944 Thu Mar 7 17:21:52 CET 2002 Paolo Molaro <lupus@ximian.com>
1945
1946         * threads.c, timed-thread.c, wait.c: Boehm-GC anable.
1947
1948 2002-02-20  Dick Porter  <dick@ximian.com>
1949
1950         * io-layer.h: Always build without cygwin support on windows
1951
1952 Mon Feb 18 15:50:59 CET 2002 Paolo Molaro <lupus@ximian.com>
1953
1954         * sockets.c: #undef DEBUG.
1955
1956 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
1957
1958         * io-layer.h: conditionally include sys/filio.h and sys/sockio.h
1959         for FIONBIO, FIONREAD, and SIOCATMARK.
1960
1961 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
1962
1963         * sockets.c: conditionally include sys/filio.h and sys/sockio.h
1964         for FIONBIO, FIONREAD, and SIOCATMARK.
1965
1966 2002-02-13  Dick Porter  <dick@ximian.com>
1967
1968         * sockets.c: Implement shutdown and select
1969
1970 2002-02-13  Jeffrey Stedfast  <fejj@ximian.com>
1971
1972         * mono-mutex.[c,h]: New source files that thinly wrap all pthread
1973         functions that take pthread_mutex_t and/or pthread_mutexattr_t
1974         arguments for the sake of portability. Implements recursive
1975         mutexes and pthread_mutex_timedlock.
1976
1977         * critical-sections.c:
1978         * events.c:
1979         * handles.c:
1980         * mutexes.c:
1981         * semaphores.c:
1982         * threads.c:
1983         * timed-thread.c:
1984         * wait.c: Use the mono-mutex wrapper portability functions/macros.
1985
1986         * pthread-compat.[c,h]: Replaced by mono-mutex.[c,h]
1987
1988 2002-01-23  Dick Porter  <dick@ximian.com>
1989
1990         * sockets.c: Networking support, mostly wrapping BSD socket APIs
1991         with handle code, and translating errno into w32 error codes.
1992
1993         * macros.h: Some w32 macros used with the socket support
1994
1995         * error.c: Implemented GetLastError() and SetLastError()
1996
1997         * Makefile.am: Added sockets, with kludge to override some symbols
1998
1999 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
2000
2001         * unicode.c (_wapi_unicode_to_utf8): byteswap UTF16 strings before
2002         passing them to iconv
2003         (_wapi_unicode_to_utf8): only swap bytes on LE systems, remove bug
2004         from previous commit.
2005
2006 2001-12-11  Dick Porter  <dick@ximian.com>
2007
2008         * io.c: Implement DeleteFile(), GetFileTime(), SetFileTime() and
2009         FileTimeToSystemTime().
2010
2011         * unicode.c (unicode_len): Nasty way of finding length of unicode
2012         string with embedded NULLs (counts until two NULLs together).
2013
2014         * mutexes.c (mutex_close): 
2015         * events.c (event_close): Release the internal pthreads resources
2016
2017 2001-11-26  Dick Porter  <dick@ximian.com>
2018
2019         * critical-sections.c:
2020         * events.c:
2021         * handles.c:
2022         * io.c:
2023         * mutexes.c:
2024         * semaphores.c:
2025         * threads.c:
2026         * timed-thread.c:
2027         * wait.c: turn off DEBUG messages
2028
2029 2001-11-22  Dick Porter  <dick@ximian.com>
2030
2031         * handles.c (SignalObjectAndWait): Implement
2032
2033         * wait.c (WaitForSingleObject): Fix case where timeout == 0
2034
2035         * threads.c:
2036         * semaphores.c:
2037         * mutexes.c:
2038         * io.c:
2039         * events.c: Support for SignalObjectAndWait
2040         
2041 2001-11-21  Dick Porter  <dick@ximian.com>
2042
2043         * events.c:
2044         * handles.c:
2045         * mutexes.c:
2046         * semaphores.c:
2047         * threads.c:
2048         * wait.c: Reliable method of returning which handle was signalled
2049         on return from WaitForMultipleObjects().
2050
2051 2001-11-21  Dick Porter  <dick@ximian.com>
2052
2053         * events.c: Implement events
2054
2055 2001-11-15  Dick Porter  <dick@ximian.com>
2056
2057         * mutexes.c: Implement mutexes
2058
2059         * threads.c: 
2060         * semaphores.c: 
2061         * misc.c: Factor out some common code
2062
2063 2001-11-13  Dick Porter  <dick@ximian.com>
2064
2065         * threads.c: Implement TLS.  Implement GetCurrentThreadId(), and
2066         GetCurrentThread() by maintaining a hash of thread handles.
2067
2068         * threads.h: Define thread and process creation flags
2069
2070 2001-11-12  Dick Porter  <dick@ximian.com>
2071
2072         * critical-sections.c: Implement critical sections
2073
2074 2001-11-12  Dick Porter  <dick@ximian.com>
2075
2076         * semaphores.c: Implement semaphores
2077
2078         * wait.c (wait_for_item): Maintain a wait count rather than count
2079         signalled booleans.
2080
2081         * threads.c (thread_wait_multiple): Don't lock the wait item, that
2082         will block other wait threads
2083
2084 2001-11-11  Dick Porter  <dick@ximian.com>
2085
2086         * Makefile.am: Rename some automake variables
2087         (from Nick Drochak <ndrochak@gol.com>)
2088
2089 2001-11-10  Dick Porter  <dick@ximian.com>
2090
2091         * Makefile.am (libwapiincludedir): Fix include destination
2092
2093         * .cvsignore: Ignore generated files
2094
2095 2001-11-10  Dietmar Maurer  <dietmar@ximian.com>
2096
2097         * pthread-compat.c: added some include files to make it compile on
2098         linux.
2099
2100 2001-11-08  Dick Porter  <dick@ximian.com>
2101
2102         * Initial checkin.
2103
2104         This is a library emulating the win32 threading and IO API.