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