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