- Fix atomic ops on s390
[mono.git] / mono / io-layer / ChangeLog
1 Mon Jan 10 16:15:19 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
2
3         * atomic.h: Fix functions on s390.
4
5 Mon Jan 10 20:30:19 CET 2005 Paolo Molaro <lupus@ximian.com>
6
7         * atomic.h: fix some functions on ppc (tests/interlocked.cs).
8
9 2005-01-10  Dick Porter  <dick@ximian.com>
10
11         * misc.c (_wapi_calc_timeout): Guard against overflow when
12         calculating timeouts.  This makes waiting with a large
13         (Int32.MaxValue) timeout not return immediately.
14
15 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
16
17         * io.c (io_ops): make this `const' so it is shareable (well, only
18         really shareable if it is statically linked...)
19
20 Mon Dec 20 11:58:33 CET 2004 Paolo Molaro <lupus@ximian.com>
21
22         * threads.c, threads.h: add accessor to get the pthread_key_t for
23         a tls id.
24
25 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26
27         * io.c: check for the existence of 'dest' and set ERROR_ALREADY_EXISTS
28         if it exists and is not the same as 'src'.
29
30 2004-12-01 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
31
32         * atomic.h : Fix InterlockedCompareExchange for s390/s390x.
33
34 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
35
36         * processes.c: unquote the cmd path, allow for ' or " when quoting and
37         pass the quoted program name to the daemon, otherwise the call to
38         g_shell_unquote in the daemon will break things up.
39
40 2004-10-14  Dick Porter  <dick@ximian.com>
41
42         * sockets.c (_wapi_accept): Revert the previous change.  We now
43         set the accepted socket to have the same blocking status as the
44         listening socket in managed code.  This follows MS behaviour.
45         
46 2004-10-14  Dick Porter  <dick@ximian.com>
47
48         * sockets.c (_wapi_accept): On Darwin, make sure a newly
49         accept()ed socket is blocking.  Fixes bug 67355, patch by
50         grompf@sublimeintervention.com.
51
52 2004-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
53
54         * system.c: check the number of online processors instead of the
55         existing ones. Sanitize return value if it's an error.
56
57 2004-10-03 Ben Maurer  <bmaurer@ximian.com>
58
59         * system.c: Add support for getting the # of cpus.
60
61 2004-09-28  Dick Porter  <dick@ximian.com>
62
63         * io.c (pipe_close_private): Fix one small typo in the last change
64         that totally hosed process creation with redirected pipes.
65
66 2004-09-24  Dick Porter  <dick@ximian.com>
67
68         * wapi-private.h: 
69         * sockets.c: 
70         * socket-private.h: 
71         * io.c: 
72         * io-private.h: 
73         * handles-private.h: Cope when a file descriptor is reused while
74         the handle that thought it owned it is still referenced, instead
75         of asserting.  Probably fixes bug 66479, though we've been unable
76         to reproduce it.
77
78 2004-09-09  Dick Porter  <dick@ximian.com>
79
80         * error.c:
81         * io.c: Set error codes everywhere.
82
83 2004-09-06  Dick Porter  <dick@ximian.com>
84
85         * handles.c (_wapi_handle_unref): Reset the private record's type
86         (CloseHandle): Check for a fd mapping failure, and return FALSE.
87         (_wapi_handle_process_fork): Fix long-standing bug in checking
88         handle return values.  Also do the required bookkeeping with the
89         new process's handles.
90
91         * daemon.c: When creating a new process's handles, check whether
92         the shared space needs to be increased
93
94 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
95
96         * shared.c (_wapi_shm_file): Fix leaking of filename.
97
98 2004-08-19  Dick Porter  <dick@ximian.com>
99
100         * handles.c (_wapi_handle_count_signalled_handles): Fix thinko
101         introduced with the fd offset stuff: unlock handles properly when
102         backing off.  Fixes the monologue hang at exit.
103
104 2004-08-18  Dick Porter  <dick@ximian.com>
105
106         * sockets.c: 
107         * io.c: Check that new fds fit in the table, return error if not
108
109         * daemon.c (_wapi_daemon_main): 
110         * handles.c (shared_init): Have all processes agree on a size for
111         the fd table.
112
113 2004-08-17  Dick Porter  <dick@ximian.com>
114
115         * daemon.c (process_new): 
116         * handles.c (_wapi_handle_new_internal): Cope when the space
117         reserved for file descriptors is larger than the shared segment
118         size.  Fixes the crash reported when running mono under gdb on
119         macosx.
120
121 2004-08-16  Dick Porter  <dick@ximian.com>
122
123         * sockets.c:
124         * io.c:
125         * handles-private.h (_wapi_handle_fd_offset_to_handle): Improve
126         error checking with passed-in file descriptors.
127
128 2004-08-11  Dick Porter  <dick@ximian.com>
129
130         * sockets.c: 
131         * io.c: Returned handle values are the file descriptor the handle
132         encapsulates
133
134         * handles.c: 
135         * handles-private.h: 
136         * daemon.c: Reserve the range of handles that can have the same
137         values as file descriptors.  These won't be used, but the values
138         will be used as file, console, pipe or socket handles.  The fd to
139         handle mapping is done internally and is invisible to users.
140         Fixes bug 61828.
141
142         * wapi-private.h (_WAPI_HANDLE_VERSION): Increment, because we now
143         reserve a chunk of handle space.
144
145 2004-08-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
146
147         * atomic.h: add support for 64-bit S/390
148
149 2004-07-22  Dick Porter  <dick@ximian.com>
150
151         * timed-thread.c: 
152         * threads.c: Move the destruction of the internal thread data to
153         after the thread has been joined.  Fixes bug 61418.
154
155 2004-07-14  Dick Porter  <dick@ximian.com>
156
157         * wait.c (test_and_own): When not waiting for all handles to
158         become signalled, only own and return the lowest.  All the
159         documentation suggests that the old way was correct, but
160         experimentation shows it actually works like this.  Patch by
161         Sébastien Robitaille
162         (sebastien.robitaille@croesus.com), fixes bug 61511.
163
164 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
165
166         * threads.c: register roots for gc
167
168 2004-07-08  Dick Porter  <dick@ximian.com>
169
170         * io.c (file_seek): If there is a high 32bit offset part, make
171         sure the low part isn't sign-extended.  Set error codes when
172         returning failure.  Fixes bug 61131.
173
174 2004-07-06  Dick Porter  <dick@ximian.com>
175
176         * io.c (file_setfiletime): Check for underflow when converting to
177         time_t values.  Set error codes when returning failure.  Fixes bug
178         60970.
179
180 2004-07-05  Dick Porter  <dick@ximian.com>
181
182         * mutexes.c (mutex_ops_init): Make the named mutex mutex sharable.
183
184         * daemon.c (unref_handle): Only destroy a handle if all processes
185         have released it, not just the current one.  Fixes bug 60887.
186
187 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
188
189         * mono-mutex.h atomic.h: Add G_GNUC_UNUSED to static inline functions
190         to prevent warnings.
191
192 2004-06-24  Dick Porter  <dick@ximian.com>
193
194         * mutexes.c: Indicate when a named mutex was reused
195
196 2004-06-24  Dick Porter  <dick@ximian.com>
197
198         * threads.c (SuspendThread): 
199         * timed-thread.c (_wapi_timed_thread_suspend): Wrap sem_wait in a
200         while loop.  See bug 58161.
201
202 Wed Jun 23 23:29:04 CEST 2004 Paolo Molaro <lupus@ximian.com>
203
204         * io.c: don't use sharemode for on-disk file permissions: it's used
205         for shared access to the open file.
206
207 2004-06-22  Dick Porter  <dick@ximian.com>
208
209         * events.c (CreateEvent): When creating an auto-reset event that
210         is initially owned, make sure the set count starts at 1.
211
212 2004-06-18  Dick Porter  <dick@ximian.com>
213
214         * event-private.h:
215         * events.c: Auto-reset events need to release one thread for each
216         time SetEvent() is called.  Fixes bug 41292.
217
218         * threads.h:
219         * mutex-private.h:
220         * mutexes.c: Scan for mutexes that are still locked by a thread
221         when it exits.  Fixes the MS demo app linked by bug 41292.
222
223         * wait.c (test_and_own): Make sure a handle is signalled before it
224         is owned.
225
226 2004-06-16  Dick Porter  <dick@ximian.com>
227
228         * timed-thread.c: Call the thread cleanup exit routine before taking
229         the join mutex, because this could deadlock if another thread tries
230         to join in the meantime.  This fixes the hang-at-exit problem seen
231         on macos.
232
233 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
234
235         * threads.c: Implemented SleepEx.
236         * threads.h: Fixed SleepEx signature.
237
238 2004-06-03  Miguel de Icaza  <miguel@ximian.com>
239
240         * threads.c: When running under valgrind, do not allocate too much
241         stack, as Valgrind default is 1 meg.
242
243 2004-05-27  Dick Porter  <dick@ximian.com>
244
245         * io.h:
246         * io.c: Implemented LockFile() and UnlockFile()
247
248 2004-05-21  Dick Porter  <dick@ximian.com>
249
250         * io.c (CreateFile): Check for existing share modes when opening
251         a file.
252
253         * handles.c: 
254         * handles-private.h: 
255         * daemon-messages.h: 
256         * daemon.c: Maintain a hash of file share modes, keying on device
257         and inode (to cope with symlinks.)
258
259 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
260
261         * daemon-messages.c: Retry if the communication with the daemon is
262           interrupted by a signal.
263         * io.c, sockets.c: Check for EINTR in every syscall that can be interrumped. 
264           Only return an error in this case if there is something in the apc queue
265           (which means that it is an interruption requested by the "user").
266         * processes.c: Use WaitForSingleObjectEx. No need to pass "alertable" as
267           true since the wait is small.
268         * shared.c: Retry write calls when interrumped by a signal.
269         * timed-thread.h, timed-thread.c: added _wapi_thread_apc_pending, which
270           returns TRUE if there are pending asynchronous calls (APC) for the
271           provided thread. Also added _wapi_thread_dispatch_apc_queue which calls
272           the enqueued APCs. Defined a new struct ApcInfo that holds information
273           about an enqueued APC.
274         * thread-private.h, threads.c: Implemented QueueUserAPC (which does the same
275           as in win32),_wapi_thread_apc_pending and _wapi_thread_dispatch_apc_queue. 
276           These last two methods call the corresponding apc methods in 
277           thread-private using the provided thread handle.
278         * threads.h: Added QueueUserAPC.
279         * uglify.h: Added WapiApcProc (needed by QueueUserAPC).
280         * wait.c, wait.h: Changed WaitForSingleObject to WaitForSingleObjectEx, and
281           WaitForMultipleObjects to WaitForMultipleObjectsEx. Implemented support
282           for APCs in those two methods and also in SleepEx.
283
284 2004-05-17  Dick Porter  <dick@ximian.com>
285
286         * io.c (CopyFile): Speed up.  Fixes bug 57859.
287
288 2004-05-13  Dick Porter  <dick@ximian.com>
289         * mono-mutex.c (mono_mutex_unlock): Return EPERM when the current
290         thread doesn't own the mutex, rather than assert()ing.
291
292 2004-05-11  Dick Porter  <dick@ximian.com>
293
294         * shared.c (_wapi_shm_attach): Cope when a previous daemon startup
295         attempt failed, leaving shared files that look like a daemon is
296         still starting.
297
298 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
299
300         * io.c:
301         (SetFileAttributes): don't the the exec bit if the corresponding read
302         bit is not set.
303
304 2004-05-10  Zoltan Varga  <vargaz@freemail.hu>
305
306         * io.c (FindFirstFile): Fix invalid free.
307
308 2004-05-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
309
310         * io.c: translate from GFileError to errno codes and don't free
311         variables right after calling mono_io_scandir, as we may overwrite
312         errno value.
313
314 2004-05-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
315
316         * io.c: g_dir_open return ENOENT for directories on which we don't have
317         read/execute permission, while returning EPERM for anything below those.
318         So, change ENOENT by EPERM if the directory exists.
319
320 2004-05-07  Dick Porter  <dick@ximian.com>
321
322         * io.c (SetFileAttributes): Don't have failed chmod()s cause a
323         "file not found" error.  Fixes bug 54032.
324         
325 2004-05-07  Dick Porter  <dick@ximian.com>
326
327         * io.c (FindFirstFile): Comment out a windows-compatibility check
328         that breaks when directories have metachars in their names.
329         Workaround for bug 58116.
330
331 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
332
333         * io.c: fixed for FindFirstFile for empty directories. Closes
334         bug #58147.
335
336 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
337
338         * processes.c: set the start time for the current process. Fixes bug
339         #58109.
340
341 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
342
343         * io-private.h: 'namelist' is now a gchar ** in _WapiHandlePrivate_find.
344         * io.c: implemented scandir using glib functions.
345
346 2004-05-04  Dick Porter  <dick@ximian.com>
347
348         * daemon.c (read_message): Return FALSE on error so the GSource
349         callback itself can return FALSE.  Cures the infinite loop poll()
350         warning on MacosX.
351         * shared.c: Fix some daemon startup race conditions.
352
353 2004-04-29  Miguel de Icaza  <miguel@ximian.com>
354
355         * io.c (CopyFile): Use 32k buffers to copy the file instead of 2k,
356         use the stack, do not use dynamic memory.
357
358 2004-04-29  Zoltan Varga  <vargaz@freemail.hu>
359
360         * io.c: Add scandir implementation for platforms which do not have
361         it, like solaris.
362
363 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
364
365         * io.[ch]: implemented GetLogicalDriveStrings.
366
367 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
368
369         * io.c:
370         * sockets.c: use the field name from configure when accessing sigval
371         pointer field. Makes this work on the Mac.
372
373 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
374
375         * atomic.c: (InterlockedExchange) fix typo for
376         mutex name
377
378 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
379
380         * io.c:
381         * sockets.c: added check for sys/aio.h.
382
383 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
384
385         * error.[ch]: added _wapi_get_win32_file_error...
386         * io.c: ... which was _wapi_get_win32_error here.
387         * sockets.c: rename the function calls here too.
388
389 2004-04-28  Dick Porter  <dick@ximian.com>
390
391         * daemon-messages.c: Avoid a deadlock when a thread is killed while
392         waiting for the daemon by using a recursive mutex.  Helps bug 56699.
393
394 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
395
396         * io.c: fixed leak in async_notifier().
397
398         * sockets.[ch]: added AIO support for sockets and fixed WSAIoctl
399         declaration.
400
401         * threads.c: removed old comment.
402
403 2004-04-26  David Waite  <mass@akuma.org>
404
405         * daemon-messages.h:
406         * daemon-private.h
407         * error.h:
408         * io.h:
409         * processes.h:
410         * shared.h:
411         * thread-private.h:
412         * wapi-private.h: remove comma from end of enumeration declarations
413         * status.h: cast unsigned int types to int for enum assignment
414
415 2004-04-26 David Waite <mass@akuma.org>
416
417         * io.c:
418         * timefuncs.c: declare 64-bit constants as long long types (i.e.
419         10ULL)
420
421 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
422
423         * socket-wrappers.h: _wapi_socket == WSASocket now. Added
424         WSA_FLAG_OVERLAPPED.
425
426         * sockets.c: new unused parameters for _wapi_socket.
427
428 2004-04-22  Miguel de Icaza  <miguel@ximian.com>
429
430         * timed-thread.c: Replace sem_init with MONO_SEM_INIT to handle
431         the fact that MacOS X is a piece of junk (sem_init is *defined* in
432         the libc, but they return `not implemented'). 
433
434 2004-04-22  Dick Porter  <dick@ximian.com>
435
436         * handles.c: 
437         * handles-private.h: Reference the handle when it is locked, so
438         that another thread can't blow it away while we're waiting for it
439         to become signalled.
440         
441         * wait.c: 
442         * timed-thread.c: 
443         * threads.c: 
444         * sockets.c: 
445         * semaphores.c: 
446         * mutexes.c: 
447         * mono-mutex.c: 
448         * io.c: 
449         * handles.c: 
450         * handles-private.h: 
451         * events.c: 
452         * error.c: 
453         * daemon-messages.c: 
454         * critical-sections.c: 
455         * atomic.c: Added pthreads cleanup handlers and error asserts
456
457         * shared.c: 
458         * handles.c: Fixed the gcc "variable might be used uninitialised"
459         warnings.  They can't happen, but gcc doesn't know that
460         g_assert()s don't return.
461
462         Fixed the declaration of _wapi_handle_process_kill() so that it
463         expects the correct type for the pid.
464         
465         * threads.c: Removed the TLS_PTHREAD_MUTEX style locking that
466         hasn't been used in ages and just made the code more complex.
467
468 2004-04-17  Zoltan Varga  <vargaz@freemail.hu>
469
470         * processes.c: Include <signal.h> for SIGKILL and SIGILL + fix some
471         warnings. Fixes #57168.
472
473 2004-04-16  Dick Porter  <dick@ximian.com>
474
475         * threads.c (Sleep): Using div(3) with a negative (when signed)
476         numerator causes the quotient to be 0 and the remainder to be the
477         numerator.  This feeds a small negative value to nanosleep(3),
478         which will return immediately and cause a busy wait.  Fixes bug
479         56351.
480
481 2004-04-15  Dick Porter  <dick@ximian.com>
482
483         * io-private.h:
484         * io.c: Rewrite FindFirstFile and FindNextFile using scandir(3)
485         and fnmatch(3) instead of glob(3).  glob() can't cope with being
486         given filenames containing metachars.  This fixes bug 40557.
487
488 2004-04-14  Bernie Solomon  <bernard@ugsolutions.com>
489
490         * security.c: #warning is a GCC-ism
491
492 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
493
494         * security.c: Removed GetUserName as glib g_get_user_name does a
495         better (portability) job. Added ImpersonateLoggedOnUser and
496         RevertToSelf.
497
498 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
499
500         * mono-mutex.h: move pthread_mutex_timedlock declaration to...
501         * mono-mutex.c: ...here. It was causing a warning that prevented
502         libgdiplus compilation.
503
504 2004-04-04  Miguel de Icaza  <miguel@ximian.com>
505
506         * security.c (GetUserName): Make it work on MacOS X
507
508 2004-04-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
509
510         * security.c: use getpwuid_r if available. This one is thread-safe.
511
512 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
513
514         * Makefile.am: Added security.c|h.
515         * security.c: New file for security related functions. Added function
516         GetUserName to fix #56144.
517         * security.h: New. Header file for security.c
518         * wapi.h: Added include for security.h
519
520 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
521
522         * daemon-messages.h: added kill structs.
523
524         * daemon.c: implemented process_process_kill.
525         * handles-private.h:  define process_process_kill.
526         * handles.c: implemented _wapi_handle_process_kill.
527         * processes.[ch]: implemented TerminateProcess.
528
529 2004-03-25  Bernie Solomon  <bernard@ugsolutions.com>
530
531         * daemon.c (rem_fd): On solaris you seem to get an
532         error even after removing the input source so don't
533         try and rem_fd it twice.
534
535 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
536
537         * daemon.c: in process_post_mortem, If the child terminated due to the 
538         receipt of a signal, the exit status must be based on WTERMSIG, since 
539         WEXITSTATUS returns 0 in this case.
540
541 2004-03-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
542
543         * daemon.c: turned a warning into a DEBUG statement. Now we may hit it.
544
545 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
546
547         * daemon.c: only call getdtablesize () once.
548         * processes.c: wait 500 ms to check if execve failed and throw the same
549         exception as MS on failure. Fixes bug #32809.
550
551 2004-03-17  Bernie Solomon  <bernard@ugsolutions.com>
552
553         * io.c (async_notifier): use "union sigval" rather
554         than sigval_t as Solaris doesn't have sigval_t
555         (which isn't in IEEE 1003.1 either).
556
557 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
558
559         * io.c: added debug stuff and removed a few redundant lines in
560         file_write.
561
562 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
563
564         * io-private.h: added new fields for file structure. Declare
565         _wapi_io_add_callback.
566
567         * io.c: added _wapi_get_win32_error, support aio_read/write in
568         file_read/write. Implemented _wapi_io_add_callback, which is where
569         BindHandle ends up.
570         
571         * io.h: added new fields for WapiOverlapped and typedef for the
572         callback.
573
574         * processes.c: fixed off-by-one bug when handling environment variables 
575         passed in.
576
577         * threads.[ch]: implemented BindIoCompletionCallback.
578
579         * uglify.h: added typedef for LPOVERLAPPED_COMPLETION_ROUTINE.
580
581 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
582
583         * socket-wrappers.h: Remove extra semicolon.
584
585 2004-03-03  Dave Camp  <dave@ximian.com>
586
587         * daemon.c: (add_fd), (fd_activity), (_wapi_daemon_main):
588         Use a new main context.
589
590 2004-03-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
591
592         * io.c:
593         (GetFileAttributes): set the error depending on errno instead of
594         setting ERROR_FILE_NOT_FOUND always. See bug #55160.
595
596 2004-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
597
598         * io.c:
599         (CopyFile): free the buffer on error.
600         * sockets.c:
601         (WSAIoctl): free the buffer on error.
602
603 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
604
605         * error.c: fixed mapping for EPROTONOSUPPORT and ESOCKTNOSUPPORT.
606
607         * sockets.[ch]: retry creating the socket for AF_INET, SOCK_RAW
608         using IP protocol with IP over IP. Implemented WSAIoctl UNIX-style.
609
610 2004-01-27  Bernie Solomon  <bernard@ugsolutions.com>
611
612         * shared.c (_wapi_shm_file): add hostname
613         to shared data file names to handle NFS mounted
614         .wapi directories.
615
616 Mon Jan 26 16:15:03 CET 2004 Paolo Molaro <lupus@ximian.com>
617
618         * sockets.h: remove obsolete soklen_t typedef.
619
620 Fri Jan 23 21:07:02 CET 2004 Paolo Molaro <lupus@ximian.com>
621
622         * socket-wrappers.h, sockets.h, sockets.c, Makefile.am: move socket
623         wrappers to its own non-installed header file.
624
625 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
626
627         * io.c:
628         (FindFirstFile): unlock the handle if FindNextFile fails.
629         (FindNextFile): g_free a couple of pointers before retrying.
630
631         * wait.c:
632         (WaitForMultipleObjects): if only one handle provided, use
633         WaitForSingleObject.
634
635 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
636
637         * handles-private.h: (_wapi_handle_type) check
638         for segment in range before using it
639
640 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
641
642         * thread-private.h: _wapi_thread_ops is now const
643         must match .c file.
644
645 Mon Dec 22 18:29:03 CET 2003 Paolo Molaro <lupus@ximian.com>
646
647         * threads.c, timed-thread.c, timed-thread.h: use mach
648         semaphores on Darwin (MacOSX) since the posix ones
649         are mostly broken there (threads are not created suspended
650         and they can start executing before they are fully initialized
651         like in tests/thread-static.cs).
652
653 Mon Dec 22 17:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
654
655         * atomic.h: ppc fixes.
656
657 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
658
659         * handles.c: remove my bad use of MONO_ZERO_ARRAY_LENGTH
660         in HDRSIZE 
661
662 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
663
664         * shared.c: (_wapi_shm_open) make scratch file
665         not have to immediately regrow to avoid remaps
666         (HPUX can't cope with these).
667         (_wapi_shm_attach) use actual size of file
668         to set scratch data_len for the creating process.
669
670         * handles.c: (_wapi_handle_new_internal) make
671         sure mutex & cond var are initialized even for
672         non process shared ones. 
673         (_wapi_handle_unref) always call destroy 
674         routines on mutex & cond var
675
676 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
677
678         * daemon.c: change channel data structure so
679         input sources are removed from glib event loop
680         properly. xsp works better on Solaris and 
681         fixes #51278
682
683 2003-12-12  Bernie Solomon  <bernard@ugsolutions.com>
684
685         * wapi-private.h: Replace G_GNUC_PRETTY_FUNCTION
686         definition with file & line number for non-GCC
687         compiles.
688
689 2003-12-08  Bernie Solomon  <bernard@ugsolutions.com>
690
691         * Makefile.am: make sure hppa_atomic.s is in distribution
692
693 2003-12-01  Dick Porter  <dick@ximian.com>
694
695         * wapi-private.h: 
696         * mutexes.c (CreateMutex): 
697         * mutex-private.h (struct _WapiHandle_mutex): 
698         * handles.c: Look up certain handle types by name, in a shared
699         namespace.  Currently only mutex handles have this implemented.
700         Fixes bug 51089.
701
702         * semaphores.c (CreateSemaphore): 
703         * events.c (CreateEvent): Fix signature
704
705 2003-11-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
706
707         * io.c: don't call g_free before testing errno as it may modify it.
708         If the path exists, return an error if it's not a directory. Fixes
709         bug #50753.
710
711 2003-11-20  Dick Porter  <dick@ximian.com>
712
713         * io.c: Missed a little-endian UTF16 conversion.  Patch from
714         Jeroen Zwartepoorte (Jeroen@xs4all.nl), fixes bug 51065.
715
716 2003-10-29  Dick Porter  <dick@ximian.com>
717
718         * io.c (MoveFile): If the move crosses filesystems, try and fall
719         back to copy and delete.  Patch from Jörg Rosenkranz
720         (JoergR@voelcker.com), fixes bug 50298.
721
722 2003-10-28  Dick Porter  <dick@ximian.com>
723
724         * io.c: Use the new encoding conversion to cope with non-utf8
725         locales in filenames.
726
727         * processes.c: Ditto for process arguments.
728
729 Tue Oct 21 12:01:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
730
731         * atomic.h: some ppc inline asm fixes (incorrect use of labels, 
732         incorrect register constraints, incorrect clobber lists).
733
734 2003-10-13  Bernie Solomon  <bernard@ugsolutions.com>
735
736         * Makefile.am hppa_atomic.s: add HP 64bit
737         implementation of atomic ops
738
739 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
740
741         * threads.c (CreateThread): Wrap pthread_attr_setstacksize call in
742         a conditional for platforms that don't have it.
743
744 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
745
746         * threads.c: (CreateThread) use stacksize argument
747         if non-zero - change default for 64 bits to 4Mb
748
749 2003-09-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
750
751         * sockets.c: set last error when socket creation fails. This shed some
752         light on bug #49015.
753
754 2003-09-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
755
756         * processes.c: fixed bug #48973: we only change \ by / for the argument
757         to be used as command.
758         When getting the program name from the args, don't let the space between
759         them in the args.
760
761 2003-09-24  Bernie Solomon <bernard@ugsolutions.com>
762
763         * atomic.h atomic.c: fix sparc so lock is
764         global, increment does so and it compiles under Sun compiler.
765
766 2003-09-22  Bernie Solomon <bernard@ugsolutions.com>
767
768         * handles.c: include <string.h> directly as may
769         not be nested in <sys/un.h> like Linux
770
771 2003-09-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
772
773         * io.c:
774         (DeleteFile): call SetLastError on failure. Fix by
775         richard.torkar@htu.se (Richard Torkar). Closes bug #48222.
776
777 2003-09-15  Lluis Sanchez Gual  <lluis@ximian.com>
778
779         * daemon.c: In compare_process(), discard handles already signalled.
780
781 2003-09-02  Dick Porter  <dick@ximian.com>
782
783         * io.c: Work around glib brain-dead assumptions about utf8-encoded
784         filenames.  Fixes bug 30781.
785
786 2003-08-28  Dick Porter  <dick@ximian.com>
787
788         * critical-sections.c:  Patch from Bernie Solomon
789         <bernard@ugsolutions.com> to emit a warning if locking a critical
790         section fails.
791
792 2003-07-23  Dick Porter  <dick@ximian.com>
793
794         * shared.c:
795         * daemon.c (maybe_exit): Avoid the race condition when the daemon is
796         closing but another client comes along when the shared data is still
797         visible.  Should fix bugs 33671 and 35213.
798
799 2003-07-23  Dick Porter  <dick@ximian.com>
800
801         * handles.c:  Initialise handle mutex and cond.  Fix by
802         Bernie Solomon <bernard@ugsolutions.com>
803
804 2003-07-15  Dick Porter  <dick@ximian.com>
805
806         * timed-thread.c (timed_thread_start_routine): Fix virtual memory
807         leak when threads quit.  Fixes bug 44067.
808
809 Wed Jun 18 19:08:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
810
811         * io.c: never add write permission for group or others in
812         SetFileAttributes ().
813
814 2003-06-17  Dick Porter  <dick@ximian.com>
815
816         * io.c (SetFileAttributes): Implement the ReadOnly attribute, and
817         ignore the unsupported ones ("fixes" bug 44977).
818
819 2003-06-17  Lluis Sanchez Gual  <lluis@ximian.com>
820
821         * misc.c: fix bug in _wapi_calc_timeout. It gave wrong values for
822           high ms values (there was an overflow).
823
824 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
825
826         * system.h (struct _WapiSystemInfo ): Fix warnings when using gcc-3.3.
827
828 2003-06-11  Dick Porter  <dick@ximian.com>
829
830         * shared.c: Fix shared directory creation.  Patch from
831         Pablo Baena <pbaena@uol.com.ar>
832
833 2003-06-10  Dick Porter  <dick@ximian.com>
834
835         * atomic.c: Delete the useless compile warning
836
837 2003-06-09  Dick Porter  <dick@ximian.com>
838
839         * daemon.c: Lookup env as a string array.  Fixes bug 44289.  Also
840         make setting the process handle value in the environment actually
841         work.
842
843         * processes.c: Pretty up the process name, if it happens to be
844         "mono" such as when another mono process forks "mono foo.exe"
845
846 2003-06-05  Dick Porter  <dick@ximian.com>
847
848         * processes.c (process_set_current): Don't do an expensive handle
849         search at application startup, check the environment to see if the
850         process handle has already been created.
851
852         * io.c: Don't do an expensive handle search when creating stdin,
853         stdout and stderr handles, just create them all the first time one
854         is requested.
855
856         * wapi-private.h:
857         * shared.c:
858         * shared.h:
859         * handles.c:
860         * handles-private.h:
861         * daemon-messages.h:
862         * daemon-private.h:
863         * daemon.c: Support for "unlimited" number of handles and scratch
864         data.
865
866         Speed up application startup by passing process handle in the
867         environment, rather than let the app scan all handles (which gets
868         really slow when there are more than a few thousand to check.)
869
870         Initialise some structs passed to syscalls, noticed by valgrind.
871         
872
873 2003-05-20  Dick Porter  <dick@ximian.com>
874
875         * io.c (FindFirstFile): Include . files in the glob.  Fixes bug
876         43229.
877
878 2003-05-19  Dick Porter  <dick@ximian.com>
879
880         * threads.c: Set the new thread's stack size to 2M.  Fix needed
881         for BSD, reported by Martin Dvorak <md@9ll.cz>
882
883 2003-05-16  Dick Porter  <dick@ximian.com>
884
885         * io.h:
886         * io.c: Implement GetTempPath()
887
888 2003-05-16  Dick Porter  <dick@ximian.com>
889
890         * processes.c (CreateProcess): Set some error codes
891
892 2003-05-12  Dick Porter  <dick@ximian.com>
893
894         * misc.c (_wapi_calc_timeout): Cope with overflowing tv_nsec.
895         Patch from Martin Dvorak <mdvorak@ninell.cz>.
896
897 2003-05-10  Dick Porter  <dick@ximian.com>
898
899         * io.c (CopyFile): Copy file mode as well as file data.  Based on
900         suggestion by Giuseppe Greco <giuseppe.greco@agamura.com>, bug
901         42706.
902
903 2003-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
904
905         * handles.c: don't call GC_gcollect when creating new handles.
906
907 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
908
909         * handles.c: added some debugging code. Call GC_gcollect
910         before creating a new handle. It makes Lupus' test run smoother and
911         faster (from 62 to 83 request per second). Notice that calling
912         GC_finalizer_notifier if needed (GC_should_invoke_finalizer ()) does
913         not improve nor degrade the performance, so i don't do it.
914
915 2003-05-02  Dick Porter  <dick@ximian.com>
916
917         * sockets.c: Rearrange closesocket() and socket_close_private(),
918         and remember to unref the handle, so we don't leak socket handles.
919         Fix from Pelle Johnsen <pelle.johnsen@mail.dk>
920
921 2003-04-11  Dick Porter  <dick@ximian.com>
922
923         * atomic.h: ARM atomic operations by Malte Hildingson
924         <tds00mahi@tellus.thn.htu.se>
925
926 Tue Apr 8 11:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
927
928         * atomic.h: fix macosx build by "Urs C. Muff" <umuff@quark.com>.
929
930 2003-04-03  Martin Baulig  <martin@ximian.com>
931
932         The following change is conditional to `WITH_INCLUDED_LIBGC'
933         which is not yet enabled by default.
934
935         * threads.c (SuspendThread, ResumeThread): Fully implemented this.
936         (gc_init): New static function; install a signal handler for
937         SIGPWR which is used to suspend threads.  [FIXME: it SIGPWR
938         doesn't exist on all Unix systems, we need to find another
939         signal].
940         (mono_wapi_push_thread_stack): New public function.  Tells the
941         garbage collector about the current stack pointer of a suspended
942         thread.
943
944 2003-04-03  Martin Baulig  <martin@ximian.com>
945
946         * timed-thread.h (TimedThread): Added `suspended_sem',
947         `suspend_count' and `stack_ptr'.
948
949 2003-03-28  Dick Porter  <dick@ximian.com>
950
951         * atomic.h: PPC support gratiously donated to the public domain
952         by John Duncan <jddst19@mac.com>
953
954 2003-03-20  Dick Porter  <dick@ximian.com>
955
956         * sockets.c (_wapi_connect): If connect() fails with EACCES, try
957         setting SO_BROADCAST and connecting again.  Fixes bug 39178.
958
959 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
960
961         * processes.c: included Jerome Laban's patch and call SetLastError when
962         the executable is not found.
963
964 2003-03-03  Dick Porter  <dick@ximian.com>
965
966         * io.c (CreateFile): Try opening directories readonly, so that
967         timestamps can be adjusted.  Patch by Elan Feingold
968         <efeingold@mn.rr.com>.
969
970 2003-02-25  Dick Porter  <dick@ximian.com>
971
972         * shared.c (_wapi_shm_attach): Return a failure code on system
973         call errors, rather than exiting.
974
975 2003-02-21  Dick Porter  <dick@ximian.com>
976
977         * processes.c (GetCurrentProcessId): Use the current process
978         handle to return the process ID, as getpid() is unreliable
979         (linuxthreads gives each thread a different pid).  Fixes bug
980         37550.
981
982 2003-02-21  Dick Porter  <dick@ximian.com>
983
984         * io.c (FindNextFile): Skip over dangling symlinks.  Fixes bug
985         34076.
986
987 2003-02-11  Dick Porter  <dick@ximian.com>
988
989         * timefuncs.h: 
990         * timefuncs.c: Added GetTickCount()
991
992 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
993
994         * error.c: added WSA_EHOSTUNREACH mapping.
995
996 2003-01-26  Miguel de Icaza  <miguel@ximian.com>
997
998         * io.c (SetFileAttributes): This routine is not currently
999         implemented for the general case, but I added a special case to
1000         set the executable bit on Linux.
1001
1002 Wed Jan 15 15:55:40 CET 2003 Paolo Molaro <lupus@ximian.com>
1003
1004         * sockets.h, daemon.c, io.c: compilation fixes on MacOSX.
1005
1006 2003-01-08  Dick Porter  <dick@ximian.com>
1007
1008         * sockets.c: Fixed setting blocking mode to true (fixes bug 36388)
1009
1010 2002-12-11  Juli Mallett  <jmallett@FreeBSD.org>
1011
1012         * daemon.c, handles-private.h, handles.c, wapi-private.h:
1013         Check for an implementation which says it supports
1014         _POSIX_THREAD_PROCESS_SHARED, rather than just one that
1015         defines the symbol.  Defined but with a value of -1 still
1016         means that it is unsupported.
1017
1018 2002-12-08  Martin Baulig  <martin@ximian.com>
1019
1020         * handles.c (_wapi_handle_new): Create new non-shared handles with
1021         an initial refcount of 1, not 0.
1022
1023 2002-11-22  Dietmar Maurer  <dietmar@ximian.com>
1024
1025         * threads.c (TlsGetValue): removed unnecessary mutex
1026
1027 2002-11-20  Dick Porter  <dick@ximian.com>
1028
1029         * timed-thread.c (_wapi_timed_thread_attach): Attached threads
1030         need to store their data structure too.
1031
1032         * threads.c: Make sure the threading data is initialised wherever
1033         it is needed
1034
1035 2002-11-15  Dick Porter  <dick@ximian.com>
1036
1037         * timed-thread.c: Removed unneeded parameters in
1038         _wapi_timed_thread_attach().
1039
1040         * threads.c: Renamed AttachThread() to make it not look like
1041         external API.  Removed unneeded parameters.
1042
1043 2002-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1044
1045         * error.[ch]: added errno_to_WSA (). It displays a warning and return
1046         WSASYSCALLFAILURE if there is no error mapping for the given errno,
1047
1048         * sockets.c: use errno_to_WSA and fixed display of warning for h_errno.
1049
1050 2002-10-31  Dick Porter  <dick@ximian.com>
1051
1052         * io.h: 
1053         * io.c: Define and use INVALID_FILE_ATTRIBUTES
1054
1055 2002-10-07  Dick Porter  <dick@ximian.com>
1056
1057         * timefuncs.c:
1058         * daemon.c: Use a more accurate time source for process start and
1059         end times.
1060
1061 2002-10-03  Dick Porter  <dick@ximian.com>
1062
1063         * daemon.c:
1064         * handles.c:
1065         * threads.c:  Fixes for freebsd.  Make sure that mutex and condition
1066         creation and deletion happen in the process that owns them, when
1067         POSIX shared thread objects aren't supported.  This breaks on
1068         freebsd, as pthread_t is a pointer to data.
1069
1070 2002-10-02  Dick Porter  <dick@ximian.com>
1071
1072         * shared.c: Use mmap() instead of sysv shm for the shared data.
1073
1074         * wapi-private.h (_WAPI_HANDLE_VERSION): Reset back to 0, for the
1075         new system
1076
1077         * daemon-private.h: 
1078         * daemon.c: mmap()ed regions survive fork, so just pass the
1079         pointer to _wapi_daemon_main instead of mapping it again.
1080
1081 2002-10-01  Dick Porter  <dick@ximian.com>
1082
1083         * timed-thread.c: Kludge for CREATE_SUSPENDED thread creation.
1084         Unfortunately libgc uses the same thread suspend technique that I
1085         want to, and the two don't mix: libgc will deadlock when it tries
1086         to stop the world if a thread has already been suspended by
1087         someone else.  Just do the simple suspended create rather than the
1088         general purpose thread suspension for now.
1089
1090         * threads.c: Pass create flags to the timed_thread create call, to
1091         implement suspended thread creation.  ResumeThread() partially
1092         implemented, to cope with the case where a newly created but
1093         suspended thread is launched.
1094
1095 2002-09-30  Dick Porter  <dick@ximian.com>
1096
1097         * sockets.c (ioctlsocket): Set non-blocking mode in a better way,
1098         with fcntl.
1099
1100 2002-09-27  Dick Porter  <dick@ximian.com>
1101
1102         * semaphores.c: Only include semaphore.h if it's present. Patch
1103         for BSD from jmmv@hispabsd.org (Julio Merino).
1104
1105 2002-09-27  Dick Porter  <dick@ximian.com>
1106
1107         * processes.c: Pass environment and working directory to the
1108         daemon when forking.  Don't let argv[0] be duplicated when looking
1109         for the program name.  Implement EnumProcessModules (simple
1110         version for now, lsof-style later if needed), GetModuleBaseName,
1111         {Get,Set}ProcessWorkingSetSize (just faked, because the vm hints
1112         aren't available on Linux).
1113
1114         * process-private.h: Store the process name, and the working set
1115         min and max
1116
1117         * handles.c:
1118         * handles-private.h: New functions to store and retrieve an array
1119         of strings in the scratch space
1120
1121         * daemon.c: Don't miss deleting some handles when a client exits
1122         (we used to rely on the client doing the final cleanup, but
1123         obviously if the client is no longer there the daemon has to do
1124         it).
1125
1126         Process forking now sets the environment and the working
1127         directory.
1128
1129         * io.c: Don't confuse fd 0 with an unassigned handle struct
1130
1131         * atomic.h: Add a google cache alternative to the msdn URL
1132
1133 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1134
1135         * sockets.c:
1136         (_wapi_recvfrom): added ECONNRESET to the switch.
1137
1138 2002-09-24  Mark Crichton  <crichton@gimp.org>
1139
1140         * atomic.h: Yea.  On linux, sparc isn't sparc, it's __sparc__.
1141         Added to ifdef.
1142
1143 2002-09-19  Mark Crichton  <crichton@gimp.org>
1144
1145         * daemon.c, shared.c: Added NEED_LINK_UNLINK for systems that
1146         dont have Linux's abstract filesystem for sockets.
1147
1148 2002-09-19  Mark Crichton  <crichton@gimp.org>
1149
1150         * atomic.h: Added SPARC atomic asm code.
1151         * daemon.c, handles-private.h, handles.c, wapi-private.h:
1152         undefined _POSIX_THREAD_PROCESS_SHARED.  This actually exists on
1153         Solaris 9, however, the code paths don't seem to work.  More testing
1154         on the shared case is *really* needed.
1155
1156 2002-09-03  Dick Porter  <dick@ximian.com>
1157
1158         * threads.h: 
1159         * threads.c: Removed PosixKillThread(), because it's not in the
1160         w32 api
1161
1162 2002-08-20  Dick Porter  <dick@ximian.com>
1163
1164         * handles.c (_wapi_handle_scratch_store): Made stored byte lengths
1165         multiples of 4 bytes, to keep header structures aligned.  Needed
1166         for sparc, at least. (Patch from crichton@gimp.org)
1167
1168         * handles.c: Removed 'disable_shm' variable (we've defaulted to
1169         building with shm enabled for months now)
1170
1171 2002-08-19  Dick Porter  <dick@ximian.com>
1172
1173         * daemon.c: Rewrote the poll() loop to use GIOChannels instead,
1174         for legacy NeXT-based systems.
1175
1176 2002-08-12  Dick Porter  <dick@ximian.com>
1177
1178         * atomic.h: Rename some parameters to avoid c++ keywords (Patch
1179         from Joseph Wenninger <kde@jowenn.at>)
1180
1181 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
1182
1183         * threads.c: use fast spinlocks by default
1184
1185 2002-08-02  Dick Porter  <dick@ximian.com>
1186
1187         * io.c (GetStdHandle): Add a handle reference when returning a
1188         duplicate console handle.  This fixes the unref_handle errors in
1189         NUnit.
1190
1191 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
1192
1193         * threads.c (TLS_PTHREAD_MUTEX): define this because else some
1194         tests does not work
1195
1196 2002-08-01  Dick Porter  <dick@ximian.com>
1197
1198         * threads.c: Use atomic spinlocks in TLS functions
1199
1200         * mono-spinlock.h:
1201         * Makefile.am: Added mono-spinlock.h
1202
1203 2002-07-21  Jeffrey Stedfast  <fejj@ximian.com>
1204
1205         * daemon-messages.c: #include <sys/types.h> and <sys/sockets.h> -
1206         these are needed for sendmsg() and also for struct msghdr (at
1207         least on Solaris). Solaris still won't build because struct msghdr
1208         doesn't have msg_flags, msg_control, or msg_controllen members.
1209         (CMSG_SPACE): Define for systems that don't have it.
1210         (CMSG_LEN): Same.
1211
1212 2002-07-20  Dick Porter  <dick@ximian.com>
1213
1214         * wapi-private.h:
1215         * io-private.h:
1216         * io.h:
1217         * io.c:
1218         * handles.c: Implemented pipe handles
1219         
1220         * handles.c:
1221         * daemon.c: Fixed bug in handle closing.
1222
1223         * shared.c:
1224         * daemon.c: Forked processes now close all open file descriptors.
1225
1226 Fri Jul 19 19:05:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
1227
1228         * sockets.h, io-layer.h, critical-sections.h: don't include config.h
1229         in header files.
1230
1231 2002-07-19  Martin Baulig  <martin@gnome.org>
1232
1233         * threads.c (ExitThread): Call exit() if no threads has been
1234         created yet.
1235
1236 2002-07-17  Dick Porter  <dick@ximian.com>
1237
1238         * daemon-messages.c: Freebsd fixes from Andreas Kohn
1239         <andreas.kohn@gmx.net>
1240
1241 2002-07-15  Dick Porter  <dick@ximian.com>
1242
1243         * io.c: Removed bogus console_flush() method, that was just cut
1244         and pasted from file_flush when I separated the two handle types.
1245
1246 2002-07-12  Dick Porter  <dick@ximian.com>
1247
1248         * io.c (convert_from_flags): Fixed misunderstanding wrt fcntl
1249         flags.  Fixes bug 27633.
1250
1251 2002-07-12  Dick Porter  <dick@ximian.com>
1252
1253         * wapi-private.h:
1254         * handles.c:
1255         * daemon.c: Use size of sockaddr_un.sun_path from config.h
1256
1257 2002-07-12  Dick Porter  <dick@ximian.com>
1258
1259         * processes.c (CreateProcess): Send stdin, stdout and stderr
1260         handles if the startup info doesnt specify new ones
1261
1262         * io.c (GetStdHandle): Return the same handle when the same
1263         standard handle is requested
1264
1265         * handles.c: Pass file descriptors when forking
1266
1267         * daemon.c: Use supplied file descriptors when forking a new
1268         process
1269
1270         * daemon-messages.h: 
1271         * daemon-messages.c: Pass stdin, stdout and stderr file
1272         descriptors to the daemon (used when forking)
1273
1274 2002-07-11  Miguel de Icaza  <miguel@ximian.com>
1275
1276         * daemon.c (_wapi_daemon_main): Use sizeof
1277         (main_socket_address.sun_path) instead of hardcoded 108 value.
1278
1279         * handles.c (shared_init): Use sizeof
1280         (shared_socket_address.sun_path) instead of hardcoded 108 value.
1281
1282 2002-07-10  Dennis Haney  <davh@davh.dk>
1283
1284         * shared.c:
1285         * handles.c:
1286         * daemon.c: Lots of documentation, some added error checking, and
1287         code readability improvements.
1288
1289         * daemon-messages.h: Add the Error request type to improve error
1290         checking.
1291
1292         * daemon-messages.c: Do a bit more error checking on send() and
1293         recv(), and log errors with a higher severity level.
1294
1295 2002-07-04  Dick Porter  <dick@ximian.com>
1296
1297         * daemon.c (process_process_fork): Fix argument handling, due to
1298         buggy understanding of g_strsplit() behaviour.
1299
1300 2002-07-03  Dick Porter  <dick@ximian.com>
1301
1302         * threads.h:
1303         * threads.c: Implement OpenThread().  Define access-control values
1304         for thread handles.
1305
1306         * wapi.h:
1307         * processes.h:
1308         * access.h:
1309         * Makefile.am: Added access.h, to hold shared access-control
1310         definitions
1311
1312 2002-07-02  Dick Porter  <dick@ximian.com>
1313
1314         * wapi-private.h (_WAPI_HANDLE_VERSION): New protocol version
1315         
1316 2002-07-02  Dick Porter  <dick@ximian.com>
1317
1318         * handles.c (shared_init): Make a second attempt to contact the
1319         daemon if the shared memory attach succeeds, but the connect()
1320         fails. (This copes with the daemon crashing without cleaning up
1321         the shared memory.)
1322
1323         * Makefile.am: 
1324         * daemon-private.h:
1325         * daemon.c:
1326         * shared.c (_wapi_shm_attach): Don't exec() anything when we fork
1327         the daemon, it's now built into the library.
1328
1329 2002-06-25  Dick Porter  <dick@ximian.com>
1330
1331         * handles.c:
1332         * handles-private.h:
1333         * daemon-messages.h:
1334         * daemon.c: Process forking and handle data management
1335
1336         * processes.h:
1337         * process-private.h:
1338         * processes.c: Process forking and other support functions
1339
1340 2002-06-25  Dick Porter  <dick@ximian.com>
1341
1342         * versioninfo.h: PE resource decoding
1343
1344         * unicode.c (_wapi_unicode_to_utf8): g_utf16_to_utf8 doesnt need
1345         to be told the string length
1346
1347         * io.c: Removed the ACTUALLY_DO_UNICODE option.  Fixed some leaks.
1348         Moved _wapi_time_t_to_filetime and the WapiFileTime typedef to
1349         timefuncs.c
1350
1351 2002-06-12  Dick Porter  <dick@ximian.com>
1352
1353         * daemon.c: 
1354         * daemon-messages.c: Handle SIGPIPE in a non-stupid way in the
1355         daemon, if MSG_NOSIGNAL isn't available.  Thanks to Jaroslaw
1356         Kowalski <jarek@atm.com.pl> for pointing out the bogosity.
1357
1358 2002-06-10  Jaroslaw Kowalski <jarek@atm.com.pl>
1359
1360         * sockets.c, daemon-messages.c: Prevent SIGPIPE from being raised
1361         when writing to a closed socket.
1362
1363 2002-06-08  Jeffrey Stedfast  <fejj@ximian.com>
1364
1365         * mono-mutex.c (mono_once): New convenience function for my
1366         previous fix.
1367
1368         * handles.c:
1369         * error.c: 
1370         * critical-sections.c: 
1371         * threads.c: 
1372         * sockets.c: 
1373         * semaphores.c: 
1374         * processes.c: 
1375         * mutexes.c: 
1376         * io.c: 
1377         * events.c: 
1378         * atomic.c: Use mono_once() rather than pthread_once().
1379
1380 2002-06-06  Jeffrey Stedfast  <fejj@ximian.com>
1381
1382         * handles.c (_wapi_handle_new): pthread_once() is not atomic, so
1383         if multiple threads all try to call _wapi_handle_new() before the
1384         shared data has been initialized, it is possible that we could get
1385         into a condition where shared_init() is being executed and later
1386         threads will pass by pthread_once() due to the fact that it has
1387         already been called and so therefor will attempt to use the shared
1388         data before it has been completely initialized. If we instead use
1389         a standard mutex locking mechanism around shared_init(), we can
1390         avoid the situation entirely. By wrapping the mutex locking in a
1391         check to see if we've already initialized the data, we can even
1392         avoid wasting resources by having to lock/unlock the mutex in any
1393         later calls (the only time we'd have to worry about
1394         locking/unlocking is the initial race to call shared_init() at
1395         startup).
1396
1397 Sat Jun 1 13:27:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
1398
1399         * atomic.h: inline asm fixes from Dennis Haney (davh@davh.dk).
1400
1401 Fri May 31 16:21:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
1402
1403         * daemon.c, handles.c: rename "sun" local var since it's apparently
1404         a #define on Solaris.
1405
1406 Fri May 31 15:40:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
1407
1408         * daemon-messages.c: work-around MSG_NOSIGNAL missing on some
1409         platforms.
1410
1411 2002-05-15  Dick Porter  <dick@ximian.com>
1412
1413         * wait.c: Fix a deadlock in WaitForMultipleObjects
1414
1415 2002-05-14  Dick Porter  <dick@ximian.com>
1416
1417         * io.c: Fix a cut&paste error, found by
1418         Jaroslaw Kowalski <jarek@atm.com.pl>
1419
1420 2002-05-10  Dan Lewis  <dihlewis@yahoo.co.uk>
1421
1422         * io.c: Nasty typo.
1423
1424 2002-05-09  Dick Porter  <dick@ximian.com>
1425
1426         * threads.c: 
1427         * semaphores.c: 
1428         * processes.c: 
1429         * mutexes.c: 
1430         * handles-private.h: 
1431         * events.c: 
1432         * Makefile.am: Remove now-unused file wait-private.h
1433
1434 2002-05-08  Dick Porter  <dick@ximian.com>
1435
1436         * shared.c: Better error messages, and report when daemon
1437         connection fails rather than blocking forever.  Do some more
1438         shared memory sanity checking.
1439
1440         * handles.c: Better error messages when connecting to shared
1441         memory and the handle daemon.  Fall back to non-shared handles if
1442         an error occurs.  Set the default back to 'shared handles'.  Fix a
1443         crashing bug in scratch space allocation that mangled the block
1444         headers.
1445
1446 2002-05-07  Miguel de Icaza  <miguel@ximian.com>
1447
1448         * handles.c (shared_init): Disable SHM for now, people have too
1449         many problems with this, and the diagnostics are not helping.
1450
1451 2002-05-06  Dan Lewis  <dihlewis@yahoo.co.uk>
1452
1453         * io.c: CreateFile sets win32 last error.
1454
1455 2002-05-05  Dick Porter  <dick@ximian.com>
1456
1457         * wapi-private.h: 
1458         * handles-private.h:
1459         * io.c: 
1460         * io-private.h:
1461         * mutexes.c: 
1462         * mutex-private.h: 
1463         * processes.c: 
1464         * process-private.h: 
1465         * semaphores.c: 
1466         * semaphore-private.h: 
1467         * sockets.c: 
1468         * socket-private.h: 
1469         * events.c: 
1470         * event-private.h: Simplify the WapiHandleOps struct: take out all
1471         the file-specific entries, leaving just the items that operate on
1472         handles themselves.  Split the close operation into shared and
1473         private parts: shared close is called by the daemon.
1474
1475         * handles.c: As above, but also pass handle allocation, ref and
1476         unref operations to the daemon.  Populate the handle_ops array at
1477         compile time, because the daemon needs to call ops on handles too.
1478         Don't bother to track open handle counts any more, the daemon does
1479         that.
1480         
1481         * threads.c: 
1482         * thread-private.h: As above, but also make the thread data
1483         handle-private.
1484
1485         * shared.c: Fork a handle daemon if the calling process created
1486         the shared memory segment.
1487
1488         * daemon.c:
1489         * daemon-messages.c:
1490         * daemon-messages.h:
1491         * Makefile.am: Build a daemon to manage handle allocation and
1492         destruction without needing to lock the shared memory
1493
1494 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
1495
1496         * atomic.c: Changed to use a normal mutex rather than a spinlock
1497         since a lot of platforms seem to not have them :\
1498
1499 2002-04-30  Dick Porter  <dick@ximian.com>
1500
1501         * Completely rewrote the handle waiting code: removed the helper
1502         thread and its attendant complexity.  All handle waiting is now
1503         abstracted into the WaitForSingleObject() and
1504         WaitForMultipleObjects() functions.
1505
1506         * Implemented inter-process sharing of handles using sysv shared
1507         memory.  This makes handles even more opaque, with a handle now
1508         just an index into an array.
1509         
1510 2002-04-25  Dan Lewis  <dihlewis@yahoo.co.uk>
1511
1512         * io.c: unitialized pointer in GetCurrentDirectory.
1513
1514 Sat Apr 20 13:37:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
1515
1516         * threads.c: destroy the mutex at thread destruction
1517         (if/when thread destruction code will be actually called).
1518         When protecting a tls data pointer from the gc, use also the 
1519         thread id in the key.
1520         
1521 Wed Apr 17 18:36:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
1522
1523         * timed-thread.c: avoid race condition when setting the thread to
1524         detached.
1525
1526 2002-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1527
1528         * jit.h: to more #include lines to avoid breaking compilation
1529         under windows when upgrading mingw and w32api to version
1530         1.3 (thanks Dick!).
1531
1532 2002-04-16  Dick Porter  <dick@ximian.com>
1533
1534         * atomic.h: Explanatory comment about lack of 80386 support
1535
1536 2002-04-15  Dick Porter  <dick@ximian.com>
1537
1538         * atomic.h: use xaddl for InterlockedIncrement() and
1539         InterlockedDecrement().  Use cmpxchgl in a loop for
1540         InterlockedExchange() and InterlockedExchangePointer().
1541
1542 Mon Apr 15 13:31:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
1543
1544         * unicode.c: fix unicode_len() to not access uninitialized memory
1545         (and updated to conform to mono code style).
1546
1547 Fri Mar 29 17:15:11 CET 2002 Paolo Molaro <lupus@ximian.com>
1548
1549         * io.c: EEXISTS is ignored for directory creation.
1550         * mono-mutex.h: remove silly "pragma }" that emacs users insert
1551         because they use a broken editor:-)
1552
1553 2002-03-28  Dick Porter  <dick@ximian.com>
1554
1555         * sockets.h: 
1556         * sockets.c: 
1557         * io.c: 
1558         * handles.h: 
1559         * handles.c: Warning cleanups
1560
1561 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
1562
1563         * unicode.h, unicode.c: changed to gunichar2
1564         * io.h, io.c: changed strings to gunichar2*, added
1565         SetFileAttributes(), GetCurrentDirectory(), SetCurrentDirectory(),
1566         some fixes to FindFirstFile() and friends.
1567
1568 2002-03-26  Dick Porter  <dick@ximian.com>
1569
1570         * types.h: Implement the large integer struct
1571
1572         * timefuncs.h:
1573         * timefuncs.c: Dummy functions that don't yet implement
1574         QueryPerformanceCounter() and QueryPerformanceFrequency()
1575
1576         * threads.h:
1577         * threads.c: Implement SleepEx()
1578
1579         * system.h:
1580         * system.c: Beginnings of GetSystemInfo()
1581
1582         * mono-mutex.c (pthread_mutex_timedlock): Fix a ms/ns conversion
1583         thinko
1584
1585         * context.h:
1586         * context.c: Dummy function that doesnt yet implement
1587         GetThreadContext()
1588
1589         * atomic.h: 
1590         * atomic.c: Interlocked functions
1591
1592 Mon Mar 25 13:01:40 CET 2002 Paolo Molaro <lupus@ximian.com>
1593
1594         * threads.c: use a gc-safe hash table to store tls pointers.
1595
1596 2002-03-22  Dick Porter  <dick@ximian.com>
1597
1598         * threads.c: Fix a race condition where a thread can start and
1599         exit before the handle has been properly initialised (no reason
1600         why the handle couldn't be initialised beforehand, so do so)
1601
1602         Fix a ms to ns conversion magnitude thinko.
1603
1604 2002-03-21  Dick Porter  <dick@ximian.com>
1605
1606         * semaphores.c: Fix a problem when waiting for one or more
1607         semaphores, and another semaphore is Released (all waiting
1608         semaphores assumed they were signalled)
1609
1610 2002-03-29  Dan Lewis <dihlewis@yahoo.co.uk>
1611
1612         * io.h, io.c, uglify.h: added MoveFile, CopyFile, CreateDirectory,
1613         RemoveDirectory, GetFileAttributes, GetFileAttributesEx
1614
1615 2002-03-19  Dietmar Maurer  <dietmar@ximian.com>
1616
1617         * threads.c (Sleep): bug fix: 1ms == 1000000ns
1618
1619 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
1620
1621         * io.h, io.c, events.c, mutexes.c, semaphores.c, sockets.c,
1622         threads.c, io.c: added flush method to handles.
1623
1624         * io.c: FlushFileBuffers() and FindFirstFile() functions.
1625
1626 Thu Mar 7 17:21:52 CET 2002 Paolo Molaro <lupus@ximian.com>
1627
1628         * threads.c, timed-thread.c, wait.c: Boehm-GC anable.
1629
1630 2002-02-20  Dick Porter  <dick@ximian.com>
1631
1632         * io-layer.h: Always build without cygwin support on windows
1633
1634 Mon Feb 18 15:50:59 CET 2002 Paolo Molaro <lupus@ximian.com>
1635
1636         * sockets.c: #undef DEBUG.
1637
1638 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
1639
1640         * io-layer.h: conditionally include sys/filio.h and sys/sockio.h
1641         for FIONBIO, FIONREAD, and SIOCATMARK.
1642
1643 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
1644
1645         * sockets.c: conditionally include sys/filio.h and sys/sockio.h
1646         for FIONBIO, FIONREAD, and SIOCATMARK.
1647
1648 2002-02-13  Dick Porter  <dick@ximian.com>
1649
1650         * sockets.c: Implement shutdown and select
1651
1652 2002-02-13  Jeffrey Stedfast  <fejj@ximian.com>
1653
1654         * mono-mutex.[c,h]: New source files that thinly wrap all pthread
1655         functions that take pthread_mutex_t and/or pthread_mutexattr_t
1656         arguments for the sake of portability. Implements recursive
1657         mutexes and pthread_mutex_timedlock.
1658
1659         * critical-sections.c:
1660         * events.c:
1661         * handles.c:
1662         * mutexes.c:
1663         * semaphores.c:
1664         * threads.c:
1665         * timed-thread.c:
1666         * wait.c: Use the mono-mutex wrapper portability functions/macros.
1667
1668         * pthread-compat.[c,h]: Replaced by mono-mutex.[c,h]
1669
1670 2002-01-23  Dick Porter  <dick@ximian.com>
1671
1672         * sockets.c: Networking support, mostly wrapping BSD socket APIs
1673         with handle code, and translating errno into w32 error codes.
1674
1675         * macros.h: Some w32 macros used with the socket support
1676
1677         * error.c: Implemented GetLastError() and SetLastError()
1678
1679         * Makefile.am: Added sockets, with kludge to override some symbols
1680
1681 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
1682
1683         * unicode.c (_wapi_unicode_to_utf8): byteswap UTF16 strings before
1684         passing them to iconv
1685         (_wapi_unicode_to_utf8): only swap bytes on LE systems, remove bug
1686         from previous commit.
1687
1688 2001-12-11  Dick Porter  <dick@ximian.com>
1689
1690         * io.c: Implement DeleteFile(), GetFileTime(), SetFileTime() and
1691         FileTimeToSystemTime().
1692
1693         * unicode.c (unicode_len): Nasty way of finding length of unicode
1694         string with embedded NULLs (counts until two NULLs together).
1695
1696         * mutexes.c (mutex_close): 
1697         * events.c (event_close): Release the internal pthreads resources
1698
1699 2001-11-26  Dick Porter  <dick@ximian.com>
1700
1701         * critical-sections.c:
1702         * events.c:
1703         * handles.c:
1704         * io.c:
1705         * mutexes.c:
1706         * semaphores.c:
1707         * threads.c:
1708         * timed-thread.c:
1709         * wait.c: turn off DEBUG messages
1710
1711 2001-11-22  Dick Porter  <dick@ximian.com>
1712
1713         * handles.c (SignalObjectAndWait): Implement
1714
1715         * wait.c (WaitForSingleObject): Fix case where timeout == 0
1716
1717         * threads.c:
1718         * semaphores.c:
1719         * mutexes.c:
1720         * io.c:
1721         * events.c: Support for SignalObjectAndWait
1722         
1723 2001-11-21  Dick Porter  <dick@ximian.com>
1724
1725         * events.c:
1726         * handles.c:
1727         * mutexes.c:
1728         * semaphores.c:
1729         * threads.c:
1730         * wait.c: Reliable method of returning which handle was signalled
1731         on return from WaitForMultipleObjects().
1732
1733 2001-11-21  Dick Porter  <dick@ximian.com>
1734
1735         * events.c: Implement events
1736
1737 2001-11-15  Dick Porter  <dick@ximian.com>
1738
1739         * mutexes.c: Implement mutexes
1740
1741         * threads.c: 
1742         * semaphores.c: 
1743         * misc.c: Factor out some common code
1744
1745 2001-11-13  Dick Porter  <dick@ximian.com>
1746
1747         * threads.c: Implement TLS.  Implement GetCurrentThreadId(), and
1748         GetCurrentThread() by maintaining a hash of thread handles.
1749
1750         * threads.h: Define thread and process creation flags
1751
1752 2001-11-12  Dick Porter  <dick@ximian.com>
1753
1754         * critical-sections.c: Implement critical sections
1755
1756 2001-11-12  Dick Porter  <dick@ximian.com>
1757
1758         * semaphores.c: Implement semaphores
1759
1760         * wait.c (wait_for_item): Maintain a wait count rather than count
1761         signalled booleans.
1762
1763         * threads.c (thread_wait_multiple): Don't lock the wait item, that
1764         will block other wait threads
1765
1766 2001-11-11  Dick Porter  <dick@ximian.com>
1767
1768         * Makefile.am: Rename some automake variables
1769         (from Nick Drochak <ndrochak@gol.com>)
1770
1771 2001-11-10  Dick Porter  <dick@ximian.com>
1772
1773         * Makefile.am (libwapiincludedir): Fix include destination
1774
1775         * .cvsignore: Ignore generated files
1776
1777 2001-11-10  Dietmar Maurer  <dietmar@ximian.com>
1778
1779         * pthread-compat.c: added some include files to make it compile on
1780         linux.
1781
1782 2001-11-08  Dick Porter  <dick@ximian.com>
1783
1784         * Initial checkin.
1785
1786         This is a library emulating the win32 threading and IO API.