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