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