2003-03-28 Dick Porter <dick@ximian.com>
[mono.git] / mono / io-layer / ChangeLog
1 2003-03-28  Dick Porter  <dick@ximian.com>
2
3         * atomic.h: PPC support gratiously donated to the public domain
4         by John Duncan <jddst19@mac.com>
5
6 2003-03-20  Dick Porter  <dick@ximian.com>
7
8         * sockets.c (_wapi_connect): If connect() fails with EACCES, try
9         setting SO_BROADCAST and connecting again.  Fixes bug 39178.
10
11 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12
13         * processes.c: included Jerome Laban's patch and call SetLastError when
14         the executable is not found.
15
16 2003-03-03  Dick Porter  <dick@ximian.com>
17
18         * io.c (CreateFile): Try opening directories readonly, so that
19         timestamps can be adjusted.  Patch by Elan Feingold
20         <efeingold@mn.rr.com>.
21
22 2003-02-25  Dick Porter  <dick@ximian.com>
23
24         * shared.c (_wapi_shm_attach): Return a failure code on system
25         call errors, rather than exiting.
26
27 2003-02-21  Dick Porter  <dick@ximian.com>
28
29         * processes.c (GetCurrentProcessId): Use the current process
30         handle to return the process ID, as getpid() is unreliable
31         (linuxthreads gives each thread a different pid).  Fixes bug
32         37550.
33
34 2003-02-21  Dick Porter  <dick@ximian.com>
35
36         * io.c (FindNextFile): Skip over dangling symlinks.  Fixes bug
37         34076.
38
39 2003-02-11  Dick Porter  <dick@ximian.com>
40
41         * timefuncs.h: 
42         * timefuncs.c: Added GetTickCount()
43
44 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
45
46         * error.c: added WSA_EHOSTUNREACH mapping.
47
48 2003-01-26  Miguel de Icaza  <miguel@ximian.com>
49
50         * io.c (SetFileAttributes): This routine is not currently
51         implemented for the general case, but I added a special case to
52         set the executable bit on Linux.
53
54 Wed Jan 15 15:55:40 CET 2003 Paolo Molaro <lupus@ximian.com>
55
56         * sockets.h, daemon.c, io.c: compilation fixes on MacOSX.
57
58 2003-01-08  Dick Porter  <dick@ximian.com>
59
60         * sockets.c: Fixed setting blocking mode to true (fixes bug 36388)
61
62 2002-12-11  Juli Mallett  <jmallett@FreeBSD.org>
63
64         * daemon.c, handles-private.h, handles.c, wapi-private.h:
65         Check for an implementation which says it supports
66         _POSIX_THREAD_PROCESS_SHARED, rather than just one that
67         defines the symbol.  Defined but with a value of -1 still
68         means that it is unsupported.
69
70 2002-12-08  Martin Baulig  <martin@ximian.com>
71
72         * handles.c (_wapi_handle_new): Create new non-shared handles with
73         an initial refcount of 1, not 0.
74
75 2002-11-22  Dietmar Maurer  <dietmar@ximian.com>
76
77         * threads.c (TlsGetValue): removed unnecessary mutex
78
79 2002-11-20  Dick Porter  <dick@ximian.com>
80
81         * timed-thread.c (_wapi_timed_thread_attach): Attached threads
82         need to store their data structure too.
83
84         * threads.c: Make sure the threading data is initialised wherever
85         it is needed
86
87 2002-11-15  Dick Porter  <dick@ximian.com>
88
89         * timed-thread.c: Removed unneeded parameters in
90         _wapi_timed_thread_attach().
91
92         * threads.c: Renamed AttachThread() to make it not look like
93         external API.  Removed unneeded parameters.
94
95 2002-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
96
97         * error.[ch]: added errno_to_WSA (). It displays a warning and return
98         WSASYSCALLFAILURE if there is no error mapping for the given errno,
99
100         * sockets.c: use errno_to_WSA and fixed display of warning for h_errno.
101
102 2002-10-31  Dick Porter  <dick@ximian.com>
103
104         * io.h: 
105         * io.c: Define and use INVALID_FILE_ATTRIBUTES
106
107 2002-10-07  Dick Porter  <dick@ximian.com>
108
109         * timefuncs.c:
110         * daemon.c: Use a more accurate time source for process start and
111         end times.
112
113 2002-10-03  Dick Porter  <dick@ximian.com>
114
115         * daemon.c:
116         * handles.c:
117         * threads.c:  Fixes for freebsd.  Make sure that mutex and condition
118         creation and deletion happen in the process that owns them, when
119         POSIX shared thread objects aren't supported.  This breaks on
120         freebsd, as pthread_t is a pointer to data.
121
122 2002-10-02  Dick Porter  <dick@ximian.com>
123
124         * shared.c: Use mmap() instead of sysv shm for the shared data.
125
126         * wapi-private.h (_WAPI_HANDLE_VERSION): Reset back to 0, for the
127         new system
128
129         * daemon-private.h: 
130         * daemon.c: mmap()ed regions survive fork, so just pass the
131         pointer to _wapi_daemon_main instead of mapping it again.
132
133 2002-10-01  Dick Porter  <dick@ximian.com>
134
135         * timed-thread.c: Kludge for CREATE_SUSPENDED thread creation.
136         Unfortunately libgc uses the same thread suspend technique that I
137         want to, and the two don't mix: libgc will deadlock when it tries
138         to stop the world if a thread has already been suspended by
139         someone else.  Just do the simple suspended create rather than the
140         general purpose thread suspension for now.
141
142         * threads.c: Pass create flags to the timed_thread create call, to
143         implement suspended thread creation.  ResumeThread() partially
144         implemented, to cope with the case where a newly created but
145         suspended thread is launched.
146
147 2002-09-30  Dick Porter  <dick@ximian.com>
148
149         * sockets.c (ioctlsocket): Set non-blocking mode in a better way,
150         with fcntl.
151
152 2002-09-27  Dick Porter  <dick@ximian.com>
153
154         * semaphores.c: Only include semaphore.h if it's present. Patch
155         for BSD from jmmv@hispabsd.org (Julio Merino).
156
157 2002-09-27  Dick Porter  <dick@ximian.com>
158
159         * processes.c: Pass environment and working directory to the
160         daemon when forking.  Don't let argv[0] be duplicated when looking
161         for the program name.  Implement EnumProcessModules (simple
162         version for now, lsof-style later if needed), GetModuleBaseName,
163         {Get,Set}ProcessWorkingSetSize (just faked, because the vm hints
164         aren't available on Linux).
165
166         * process-private.h: Store the process name, and the working set
167         min and max
168
169         * handles.c:
170         * handles-private.h: New functions to store and retrieve an array
171         of strings in the scratch space
172
173         * daemon.c: Don't miss deleting some handles when a client exits
174         (we used to rely on the client doing the final cleanup, but
175         obviously if the client is no longer there the daemon has to do
176         it).
177
178         Process forking now sets the environment and the working
179         directory.
180
181         * io.c: Don't confuse fd 0 with an unassigned handle struct
182
183         * atomic.h: Add a google cache alternative to the msdn URL
184
185 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
186
187         * sockets.c:
188         (_wapi_recvfrom): added ECONNRESET to the switch.
189
190 2002-09-24  Mark Crichton  <crichton@gimp.org>
191
192         * atomic.h: Yea.  On linux, sparc isn't sparc, it's __sparc__.
193         Added to ifdef.
194
195 2002-09-19  Mark Crichton  <crichton@gimp.org>
196
197         * daemon.c, shared.c: Added NEED_LINK_UNLINK for systems that
198         dont have Linux's abstract filesystem for sockets.
199
200 2002-09-19  Mark Crichton  <crichton@gimp.org>
201
202         * atomic.h: Added SPARC atomic asm code.
203         * daemon.c, handles-private.h, handles.c, wapi-private.h:
204         undefined _POSIX_THREAD_PROCESS_SHARED.  This actually exists on
205         Solaris 9, however, the code paths don't seem to work.  More testing
206         on the shared case is *really* needed.
207
208 2002-09-03  Dick Porter  <dick@ximian.com>
209
210         * threads.h: 
211         * threads.c: Removed PosixKillThread(), because it's not in the
212         w32 api
213
214 2002-08-20  Dick Porter  <dick@ximian.com>
215
216         * handles.c (_wapi_handle_scratch_store): Made stored byte lengths
217         multiples of 4 bytes, to keep header structures aligned.  Needed
218         for sparc, at least. (Patch from crichton@gimp.org)
219
220         * handles.c: Removed 'disable_shm' variable (we've defaulted to
221         building with shm enabled for months now)
222
223 2002-08-19  Dick Porter  <dick@ximian.com>
224
225         * daemon.c: Rewrote the poll() loop to use GIOChannels instead,
226         for legacy NeXT-based systems.
227
228 2002-08-12  Dick Porter  <dick@ximian.com>
229
230         * atomic.h: Rename some parameters to avoid c++ keywords (Patch
231         from Joseph Wenninger <kde@jowenn.at>)
232
233 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
234
235         * threads.c: use fast spinlocks by default
236
237 2002-08-02  Dick Porter  <dick@ximian.com>
238
239         * io.c (GetStdHandle): Add a handle reference when returning a
240         duplicate console handle.  This fixes the unref_handle errors in
241         NUnit.
242
243 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
244
245         * threads.c (TLS_PTHREAD_MUTEX): define this because else some
246         tests does not work
247
248 2002-08-01  Dick Porter  <dick@ximian.com>
249
250         * threads.c: Use atomic spinlocks in TLS functions
251
252         * mono-spinlock.h:
253         * Makefile.am: Added mono-spinlock.h
254
255 2002-07-21  Jeffrey Stedfast  <fejj@ximian.com>
256
257         * daemon-messages.c: #include <sys/types.h> and <sys/sockets.h> -
258         these are needed for sendmsg() and also for struct msghdr (at
259         least on Solaris). Solaris still won't build because struct msghdr
260         doesn't have msg_flags, msg_control, or msg_controllen members.
261         (CMSG_SPACE): Define for systems that don't have it.
262         (CMSG_LEN): Same.
263
264 2002-07-20  Dick Porter  <dick@ximian.com>
265
266         * wapi-private.h:
267         * io-private.h:
268         * io.h:
269         * io.c:
270         * handles.c: Implemented pipe handles
271         
272         * handles.c:
273         * daemon.c: Fixed bug in handle closing.
274
275         * shared.c:
276         * daemon.c: Forked processes now close all open file descriptors.
277
278 Fri Jul 19 19:05:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
279
280         * sockets.h, io-layer.h, critical-sections.h: don't include config.h
281         in header files.
282
283 2002-07-19  Martin Baulig  <martin@gnome.org>
284
285         * threads.c (ExitThread): Call exit() if no threads has been
286         created yet.
287
288 2002-07-17  Dick Porter  <dick@ximian.com>
289
290         * daemon-messages.c: Freebsd fixes from Andreas Kohn
291         <andreas.kohn@gmx.net>
292
293 2002-07-15  Dick Porter  <dick@ximian.com>
294
295         * io.c: Removed bogus console_flush() method, that was just cut
296         and pasted from file_flush when I separated the two handle types.
297
298 2002-07-12  Dick Porter  <dick@ximian.com>
299
300         * io.c (convert_from_flags): Fixed misunderstanding wrt fcntl
301         flags.  Fixes bug 27633.
302
303 2002-07-12  Dick Porter  <dick@ximian.com>
304
305         * wapi-private.h:
306         * handles.c:
307         * daemon.c: Use size of sockaddr_un.sun_path from config.h
308
309 2002-07-12  Dick Porter  <dick@ximian.com>
310
311         * processes.c (CreateProcess): Send stdin, stdout and stderr
312         handles if the startup info doesnt specify new ones
313
314         * io.c (GetStdHandle): Return the same handle when the same
315         standard handle is requested
316
317         * handles.c: Pass file descriptors when forking
318
319         * daemon.c: Use supplied file descriptors when forking a new
320         process
321
322         * daemon-messages.h: 
323         * daemon-messages.c: Pass stdin, stdout and stderr file
324         descriptors to the daemon (used when forking)
325
326 2002-07-11  Miguel de Icaza  <miguel@ximian.com>
327
328         * daemon.c (_wapi_daemon_main): Use sizeof
329         (main_socket_address.sun_path) instead of hardcoded 108 value.
330
331         * handles.c (shared_init): Use sizeof
332         (shared_socket_address.sun_path) instead of hardcoded 108 value.
333
334 2002-07-10  Dennis Haney  <davh@davh.dk>
335
336         * shared.c:
337         * handles.c:
338         * daemon.c: Lots of documentation, some added error checking, and
339         code readability improvements.
340
341         * daemon-messages.h: Add the Error request type to improve error
342         checking.
343
344         * daemon-messages.c: Do a bit more error checking on send() and
345         recv(), and log errors with a higher severity level.
346
347 2002-07-04  Dick Porter  <dick@ximian.com>
348
349         * daemon.c (process_process_fork): Fix argument handling, due to
350         buggy understanding of g_strsplit() behaviour.
351
352 2002-07-03  Dick Porter  <dick@ximian.com>
353
354         * threads.h:
355         * threads.c: Implement OpenThread().  Define access-control values
356         for thread handles.
357
358         * wapi.h:
359         * processes.h:
360         * access.h:
361         * Makefile.am: Added access.h, to hold shared access-control
362         definitions
363
364 2002-07-02  Dick Porter  <dick@ximian.com>
365
366         * wapi-private.h (_WAPI_HANDLE_VERSION): New protocol version
367         
368 2002-07-02  Dick Porter  <dick@ximian.com>
369
370         * handles.c (shared_init): Make a second attempt to contact the
371         daemon if the shared memory attach succeeds, but the connect()
372         fails. (This copes with the daemon crashing without cleaning up
373         the shared memory.)
374
375         * Makefile.am: 
376         * daemon-private.h:
377         * daemon.c:
378         * shared.c (_wapi_shm_attach): Don't exec() anything when we fork
379         the daemon, it's now built into the library.
380
381 2002-06-25  Dick Porter  <dick@ximian.com>
382
383         * handles.c:
384         * handles-private.h:
385         * daemon-messages.h:
386         * daemon.c: Process forking and handle data management
387
388         * processes.h:
389         * process-private.h:
390         * processes.c: Process forking and other support functions
391
392 2002-06-25  Dick Porter  <dick@ximian.com>
393
394         * versioninfo.h: PE resource decoding
395
396         * unicode.c (_wapi_unicode_to_utf8): g_utf16_to_utf8 doesnt need
397         to be told the string length
398
399         * io.c: Removed the ACTUALLY_DO_UNICODE option.  Fixed some leaks.
400         Moved _wapi_time_t_to_filetime and the WapiFileTime typedef to
401         timefuncs.c
402
403 2002-06-12  Dick Porter  <dick@ximian.com>
404
405         * daemon.c: 
406         * daemon-messages.c: Handle SIGPIPE in a non-stupid way in the
407         daemon, if MSG_NOSIGNAL isn't available.  Thanks to Jaroslaw
408         Kowalski <jarek@atm.com.pl> for pointing out the bogosity.
409
410 2002-06-10  Jaroslaw Kowalski <jarek@atm.com.pl>
411
412         * sockets.c, daemon-messages.c: Prevent SIGPIPE from being raised
413         when writing to a closed socket.
414
415 2002-06-08  Jeffrey Stedfast  <fejj@ximian.com>
416
417         * mono-mutex.c (mono_once): New convenience function for my
418         previous fix.
419
420         * handles.c:
421         * error.c: 
422         * critical-sections.c: 
423         * threads.c: 
424         * sockets.c: 
425         * semaphores.c: 
426         * processes.c: 
427         * mutexes.c: 
428         * io.c: 
429         * events.c: 
430         * atomic.c: Use mono_once() rather than pthread_once().
431
432 2002-06-06  Jeffrey Stedfast  <fejj@ximian.com>
433
434         * handles.c (_wapi_handle_new): pthread_once() is not atomic, so
435         if multiple threads all try to call _wapi_handle_new() before the
436         shared data has been initialized, it is possible that we could get
437         into a condition where shared_init() is being executed and later
438         threads will pass by pthread_once() due to the fact that it has
439         already been called and so therefor will attempt to use the shared
440         data before it has been completely initialized. If we instead use
441         a standard mutex locking mechanism around shared_init(), we can
442         avoid the situation entirely. By wrapping the mutex locking in a
443         check to see if we've already initialized the data, we can even
444         avoid wasting resources by having to lock/unlock the mutex in any
445         later calls (the only time we'd have to worry about
446         locking/unlocking is the initial race to call shared_init() at
447         startup).
448
449 Sat Jun 1 13:27:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
450
451         * atomic.h: inline asm fixes from Dennis Haney (davh@davh.dk).
452
453 Fri May 31 16:21:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
454
455         * daemon.c, handles.c: rename "sun" local var since it's apparently
456         a #define on Solaris.
457
458 Fri May 31 15:40:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
459
460         * daemon-messages.c: work-around MSG_NOSIGNAL missing on some
461         platforms.
462
463 2002-05-15  Dick Porter  <dick@ximian.com>
464
465         * wait.c: Fix a deadlock in WaitForMultipleObjects
466
467 2002-05-14  Dick Porter  <dick@ximian.com>
468
469         * io.c: Fix a cut&paste error, found by
470         Jaroslaw Kowalski <jarek@atm.com.pl>
471
472 2002-05-10  Dan Lewis  <dihlewis@yahoo.co.uk>
473
474         * io.c: Nasty typo.
475
476 2002-05-09  Dick Porter  <dick@ximian.com>
477
478         * threads.c: 
479         * semaphores.c: 
480         * processes.c: 
481         * mutexes.c: 
482         * handles-private.h: 
483         * events.c: 
484         * Makefile.am: Remove now-unused file wait-private.h
485
486 2002-05-08  Dick Porter  <dick@ximian.com>
487
488         * shared.c: Better error messages, and report when daemon
489         connection fails rather than blocking forever.  Do some more
490         shared memory sanity checking.
491
492         * handles.c: Better error messages when connecting to shared
493         memory and the handle daemon.  Fall back to non-shared handles if
494         an error occurs.  Set the default back to 'shared handles'.  Fix a
495         crashing bug in scratch space allocation that mangled the block
496         headers.
497
498 2002-05-07  Miguel de Icaza  <miguel@ximian.com>
499
500         * handles.c (shared_init): Disable SHM for now, people have too
501         many problems with this, and the diagnostics are not helping.
502
503 2002-05-06  Dan Lewis  <dihlewis@yahoo.co.uk>
504
505         * io.c: CreateFile sets win32 last error.
506
507 2002-05-05  Dick Porter  <dick@ximian.com>
508
509         * wapi-private.h: 
510         * handles-private.h:
511         * io.c: 
512         * io-private.h:
513         * mutexes.c: 
514         * mutex-private.h: 
515         * processes.c: 
516         * process-private.h: 
517         * semaphores.c: 
518         * semaphore-private.h: 
519         * sockets.c: 
520         * socket-private.h: 
521         * events.c: 
522         * event-private.h: Simplify the WapiHandleOps struct: take out all
523         the file-specific entries, leaving just the items that operate on
524         handles themselves.  Split the close operation into shared and
525         private parts: shared close is called by the daemon.
526
527         * handles.c: As above, but also pass handle allocation, ref and
528         unref operations to the daemon.  Populate the handle_ops array at
529         compile time, because the daemon needs to call ops on handles too.
530         Don't bother to track open handle counts any more, the daemon does
531         that.
532         
533         * threads.c: 
534         * thread-private.h: As above, but also make the thread data
535         handle-private.
536
537         * shared.c: Fork a handle daemon if the calling process created
538         the shared memory segment.
539
540         * daemon.c:
541         * daemon-messages.c:
542         * daemon-messages.h:
543         * Makefile.am: Build a daemon to manage handle allocation and
544         destruction without needing to lock the shared memory
545
546 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
547
548         * atomic.c: Changed to use a normal mutex rather than a spinlock
549         since a lot of platforms seem to not have them :\
550
551 2002-04-30  Dick Porter  <dick@ximian.com>
552
553         * Completely rewrote the handle waiting code: removed the helper
554         thread and its attendant complexity.  All handle waiting is now
555         abstracted into the WaitForSingleObject() and
556         WaitForMultipleObjects() functions.
557
558         * Implemented inter-process sharing of handles using sysv shared
559         memory.  This makes handles even more opaque, with a handle now
560         just an index into an array.
561         
562 2002-04-25  Dan Lewis  <dihlewis@yahoo.co.uk>
563
564         * io.c: unitialized pointer in GetCurrentDirectory.
565
566 Sat Apr 20 13:37:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
567
568         * threads.c: destroy the mutex at thread destruction
569         (if/when thread destruction code will be actually called).
570         When protecting a tls data pointer from the gc, use also the 
571         thread id in the key.
572         
573 Wed Apr 17 18:36:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
574
575         * timed-thread.c: avoid race condition when setting the thread to
576         detached.
577
578 2002-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
579
580         * jit.h: to more #include lines to avoid breaking compilation
581         under windows when upgrading mingw and w32api to version
582         1.3 (thanks Dick!).
583
584 2002-04-16  Dick Porter  <dick@ximian.com>
585
586         * atomic.h: Explanatory comment about lack of 80386 support
587
588 2002-04-15  Dick Porter  <dick@ximian.com>
589
590         * atomic.h: use xaddl for InterlockedIncrement() and
591         InterlockedDecrement().  Use cmpxchgl in a loop for
592         InterlockedExchange() and InterlockedExchangePointer().
593
594 Mon Apr 15 13:31:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
595
596         * unicode.c: fix unicode_len() to not access uninitialized memory
597         (and updated to conform to mono code style).
598
599 Fri Mar 29 17:15:11 CET 2002 Paolo Molaro <lupus@ximian.com>
600
601         * io.c: EEXISTS is ignored for directory creation.
602         * mono-mutex.h: remove silly "pragma }" that emacs users insert
603         because they use a broken editor:-)
604
605 2002-03-28  Dick Porter  <dick@ximian.com>
606
607         * sockets.h: 
608         * sockets.c: 
609         * io.c: 
610         * handles.h: 
611         * handles.c: Warning cleanups
612
613 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
614
615         * unicode.h, unicode.c: changed to gunichar2
616         * io.h, io.c: changed strings to gunichar2*, added
617         SetFileAttributes(), GetCurrentDirectory(), SetCurrentDirectory(),
618         some fixes to FindFirstFile() and friends.
619
620 2002-03-26  Dick Porter  <dick@ximian.com>
621
622         * types.h: Implement the large integer struct
623
624         * timefuncs.h:
625         * timefuncs.c: Dummy functions that don't yet implement
626         QueryPerformanceCounter() and QueryPerformanceFrequency()
627
628         * threads.h:
629         * threads.c: Implement SleepEx()
630
631         * system.h:
632         * system.c: Beginnings of GetSystemInfo()
633
634         * mono-mutex.c (pthread_mutex_timedlock): Fix a ms/ns conversion
635         thinko
636
637         * context.h:
638         * context.c: Dummy function that doesnt yet implement
639         GetThreadContext()
640
641         * atomic.h: 
642         * atomic.c: Interlocked functions
643
644 Mon Mar 25 13:01:40 CET 2002 Paolo Molaro <lupus@ximian.com>
645
646         * threads.c: use a gc-safe hash table to store tls pointers.
647
648 2002-03-22  Dick Porter  <dick@ximian.com>
649
650         * threads.c: Fix a race condition where a thread can start and
651         exit before the handle has been properly initialised (no reason
652         why the handle couldn't be initialised beforehand, so do so)
653
654         Fix a ms to ns conversion magnitude thinko.
655
656 2002-03-21  Dick Porter  <dick@ximian.com>
657
658         * semaphores.c: Fix a problem when waiting for one or more
659         semaphores, and another semaphore is Released (all waiting
660         semaphores assumed they were signalled)
661
662 2002-03-29  Dan Lewis <dihlewis@yahoo.co.uk>
663
664         * io.h, io.c, uglify.h: added MoveFile, CopyFile, CreateDirectory,
665         RemoveDirectory, GetFileAttributes, GetFileAttributesEx
666
667 2002-03-19  Dietmar Maurer  <dietmar@ximian.com>
668
669         * threads.c (Sleep): bug fix: 1ms == 1000000ns
670
671 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
672
673         * io.h, io.c, events.c, mutexes.c, semaphores.c, sockets.c,
674         threads.c, io.c: added flush method to handles.
675
676         * io.c: FlushFileBuffers() and FindFirstFile() functions.
677
678 Thu Mar 7 17:21:52 CET 2002 Paolo Molaro <lupus@ximian.com>
679
680         * threads.c, timed-thread.c, wait.c: Boehm-GC anable.
681
682 2002-02-20  Dick Porter  <dick@ximian.com>
683
684         * io-layer.h: Always build without cygwin support on windows
685
686 Mon Feb 18 15:50:59 CET 2002 Paolo Molaro <lupus@ximian.com>
687
688         * sockets.c: #undef DEBUG.
689
690 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
691
692         * io-layer.h: conditionally include sys/filio.h and sys/sockio.h
693         for FIONBIO, FIONREAD, and SIOCATMARK.
694
695 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
696
697         * sockets.c: conditionally include sys/filio.h and sys/sockio.h
698         for FIONBIO, FIONREAD, and SIOCATMARK.
699
700 2002-02-13  Dick Porter  <dick@ximian.com>
701
702         * sockets.c: Implement shutdown and select
703
704 2002-02-13  Jeffrey Stedfast  <fejj@ximian.com>
705
706         * mono-mutex.[c,h]: New source files that thinly wrap all pthread
707         functions that take pthread_mutex_t and/or pthread_mutexattr_t
708         arguments for the sake of portability. Implements recursive
709         mutexes and pthread_mutex_timedlock.
710
711         * critical-sections.c:
712         * events.c:
713         * handles.c:
714         * mutexes.c:
715         * semaphores.c:
716         * threads.c:
717         * timed-thread.c:
718         * wait.c: Use the mono-mutex wrapper portability functions/macros.
719
720         * pthread-compat.[c,h]: Replaced by mono-mutex.[c,h]
721
722 2002-01-23  Dick Porter  <dick@ximian.com>
723
724         * sockets.c: Networking support, mostly wrapping BSD socket APIs
725         with handle code, and translating errno into w32 error codes.
726
727         * macros.h: Some w32 macros used with the socket support
728
729         * error.c: Implemented GetLastError() and SetLastError()
730
731         * Makefile.am: Added sockets, with kludge to override some symbols
732
733 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
734
735         * unicode.c (_wapi_unicode_to_utf8): byteswap UTF16 strings before
736         passing them to iconv
737         (_wapi_unicode_to_utf8): only swap bytes on LE systems, remove bug
738         from previous commit.
739
740 2001-12-11  Dick Porter  <dick@ximian.com>
741
742         * io.c: Implement DeleteFile(), GetFileTime(), SetFileTime() and
743         FileTimeToSystemTime().
744
745         * unicode.c (unicode_len): Nasty way of finding length of unicode
746         string with embedded NULLs (counts until two NULLs together).
747
748         * mutexes.c (mutex_close): 
749         * events.c (event_close): Release the internal pthreads resources
750
751 2001-11-26  Dick Porter  <dick@ximian.com>
752
753         * critical-sections.c:
754         * events.c:
755         * handles.c:
756         * io.c:
757         * mutexes.c:
758         * semaphores.c:
759         * threads.c:
760         * timed-thread.c:
761         * wait.c: turn off DEBUG messages
762
763 2001-11-22  Dick Porter  <dick@ximian.com>
764
765         * handles.c (SignalObjectAndWait): Implement
766
767         * wait.c (WaitForSingleObject): Fix case where timeout == 0
768
769         * threads.c:
770         * semaphores.c:
771         * mutexes.c:
772         * io.c:
773         * events.c: Support for SignalObjectAndWait
774         
775 2001-11-21  Dick Porter  <dick@ximian.com>
776
777         * events.c:
778         * handles.c:
779         * mutexes.c:
780         * semaphores.c:
781         * threads.c:
782         * wait.c: Reliable method of returning which handle was signalled
783         on return from WaitForMultipleObjects().
784
785 2001-11-21  Dick Porter  <dick@ximian.com>
786
787         * events.c: Implement events
788
789 2001-11-15  Dick Porter  <dick@ximian.com>
790
791         * mutexes.c: Implement mutexes
792
793         * threads.c: 
794         * semaphores.c: 
795         * misc.c: Factor out some common code
796
797 2001-11-13  Dick Porter  <dick@ximian.com>
798
799         * threads.c: Implement TLS.  Implement GetCurrentThreadId(), and
800         GetCurrentThread() by maintaining a hash of thread handles.
801
802         * threads.h: Define thread and process creation flags
803
804 2001-11-12  Dick Porter  <dick@ximian.com>
805
806         * critical-sections.c: Implement critical sections
807
808 2001-11-12  Dick Porter  <dick@ximian.com>
809
810         * semaphores.c: Implement semaphores
811
812         * wait.c (wait_for_item): Maintain a wait count rather than count
813         signalled booleans.
814
815         * threads.c (thread_wait_multiple): Don't lock the wait item, that
816         will block other wait threads
817
818 2001-11-11  Dick Porter  <dick@ximian.com>
819
820         * Makefile.am: Rename some automake variables
821         (from Nick Drochak <ndrochak@gol.com>)
822
823 2001-11-10  Dick Porter  <dick@ximian.com>
824
825         * Makefile.am (libwapiincludedir): Fix include destination
826
827         * .cvsignore: Ignore generated files
828
829 2001-11-10  Dietmar Maurer  <dietmar@ximian.com>
830
831         * pthread-compat.c: added some include files to make it compile on
832         linux.
833
834 2001-11-08  Dick Porter  <dick@ximian.com>
835
836         * Initial checkin.
837
838         This is a library emulating the win32 threading and IO API.
839
840