source: trunk/src/emx/ChangeLog.LIBC@ 2289

Last change on this file since 2289 was 2289, checked in by bird, 20 years ago

o Protect the fork operations by the means of must complete so

signals won't interrupt us till we're finished. This might leave
unkillable processes around if fork goes highwire.

o Better exception logging during fork.
o Use MMX memcpy in fork (if supported).
o The C function libc_Back_processFork() replaces the pure assembly fork().

  • Property cvs2svn:cvs-rev set to 1.119
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 24.5 KB
Line 
1/* $Id: ChangeLog.LIBC 2289 2005-08-20 22:08:50Z bird $ */
2
3TODO: open replace on RAMFS fails with error 32!
4
52005-08-20: knut st. osmundsen <bird-gccos2-spam@anduin.net>
6 - libc:
7 o Define _EMX_SOURCE (__USE_EMX) along with _BSD_SOURCE and _SVID_SOURCE as
8 defaults in features.h.
9 o Protect the fork operations by the means of must complete so
10 signals won't interrupt us till we're finished. This might leave
11 unkillable processes around if fork goes highwire.
12 o Better exception logging during fork.
13 o Use MMX memcpy in fork (if supported).
14 o The C function __libc_Back_processFork() replaces the pure assembly __fork().
15 o Added _memcpy_amd.
16 o Fixed some logging statements in sharedpm.c.
17 o Log __fmutex_release_internal_must_complete.
18 o Corrected a few prototypes in process.h to use pid_t.
19
202005-08-13: knut st. osmundsen <bird-gccos2-spam@anduin.net>
21 - libc:
22 o Added SH_COMPAT to share.h and emulate it as SH_DENYNO (just like watcom).
23 The SH_COMPAT shareing mode is not available to OS/2 processes, only DOS / os2krnl.
24
252005-08-02: knut st. osmundsen <bird-gccos2-spam@anduin.net>
26 - libc:
27 o __libc_back_fsNativeFileModeSet(): The long set api is broken
28 in 14.103b & c (at least) so avoid it where it isn't strictly required.
29
302005-07-24: knut st. osmundsen <bird-gccos2-spam@anduin.net>
31 - libos2:
32 o Added some missing INCL_DOSERRORS #defines (very odd ones).
33 - emximp:
34 o Fixed bad done string allocation.
35 - ld:
36 o Fixed a case of memory access after free.
37 o Switched back to alloca and adding 23 MB of stack.
38
392005-07-21: knut st. osmundsen <bird-gccos2-spam@anduin.net>
40 - libc:
41 o unistd.h prototype of encrypt() shall return void not int.
42 o Fixed __USE_GNU tests in ftw.h and sys/dirent.h.
43
442005-07-17: knut st. osmundsen <bird-gccos2-spam@anduin.net>
45 - libc:
46 o LIBC_ASSERT*() are for internal libc errors, LIBCLOG_ERROR*() are
47 for user related error. Big code adjustements.
48 o Fixed a few smaller issues.
49 o Started fixing exec() backend.
50 o Fixed some more mktime / localtime bugs.
51 o Fixed crash on simple LIBC_ASSERT() caused by NULL format string.
52 o Generate device numbers for devices and pipes too.
53 o Fixed mixup of Dev and Inode during filehandle inheritance.
54 o Fixed __dup and __dup2 bug in relation to the FD_CLOEXEC clearing.
55 o Fixed bug in codepage normalization during setlocale().
56 o Fixed bug in regex where the lock was overwritten after initialization.
57 o Switch the glibc locks to smutex to avoid leaking event semaphores.
58 o Added _smutex_try_request().
59 o Fixed __libc_back_fsResolve to always set fInUnixTree so the result can
60 be adjusted correctly on failure as well.
61 - version.smak:
62 o Changed version number back to 3.3.5 / 0.6 rc1.
63
642005-07-11: knut st. osmundsen <bird-gccos2-spam@anduin.net>
65 - libos2:
66 o UniStrFromUcs added and UniStrToUcs to uconv.h.
67 Added UniStrFromUcs, UniStrToUcs, UniMalloc and UniFree to unicode.imp.
68
692005-07-10: knut st. osmundsen <bird-gccos2-spam@anduin.net>
70 - libc:
71 o Replaced BSD regex with the new GLIBC implementation.
72 o Fixed two bad bugs in the handling of the list of free
73 SPM notification structures.
74 o Moved the codeset standardization up a bit so nl_langinfo
75 and setlocale reports the same codeset.
76
772005-07-06: knut st. osmundsen <bird-gccos2-spam@anduin.net>
78 - libc:
79 o Changed utimes() to allow NULL pointer parameter.
80 Please note that BSD will crash in if you try it there.
81 o Renamed the BSD setmode to bsd_setmode and put back the
82 PC setmode.
83
842005-07-05: knut st. osmundsen <bird-gccos2-spam@anduin.net>
85 - libc:
86 o Fixed spawn/fork + fork() + exec/spawn/fork in the child.
87 o Kill any known decentants to prevent them from being
88 adopted by our parent. (On UNIX processes begin made
89 orphants are adopted and killed by the init process.)
90 o Added signal handler types for POSIX, BSD and GNU conformance.
91 o Reap embryos when the waiter thread is querying spm about
92 the death certificate. This, together with a tiny fix
93 in __spawnve() cures the bad spm process leaks when spawning
94 non-libc processes seen with make when building libc.
95
962005-07-04: knut st. osmundsen <bird-gccos2-spam@anduin.net>
97 - libc:
98 o Added the BSD optreset global to getopt.
99 o Changed PC setmode to _setmode. As it collides with a BSD 4.4. interface.
100 o Added the BSD 4.4. setmode/getmode functions from FreeBSD.
101 o Added getsid and getpgid, correcting the getpgrp implementation.
102 o Added/replaced setbuf, setbuffer and setlinebuf from BSD.
103
1042005-07-03: knut st. osmundsen <bird-gccos2-spam@anduin.net>
105 - libc:
106 o Collected the different panic routines into one single routine
107 in the backend, __libc_Back_panic[V](). The routine supports
108 very simple printf like message formatting. By default it wil
109 dump any available registers and attempt dumping the process
110 before killing it. This behaviour can be configured with the
111 env var.: LIBC_PANIC=[nodump][terse][quiet][breakpoint]
112
1132005-07-02: knut st. osmundsen <bird-gccos2-spam@anduin.net>
114 - libc:
115 o Added obstack.h and it's implementation from GLIBC.
116 o malloc and realloc must set errno to ENOMEM on failure.
117 o Fixed assertion during realloc(p, -256) to return failure
118 instead. Added a few more overflow checks.
119 o Added %m (GLIBC extension) to the printf familiy. %m means
120 priting strerror(errno), it takes no arguments.
121 o Fixed serveral bugs in the C/POSIX locale
122 o Implemented the LC_MESSAGES locale.
123 o Fixed mixup in fts.c port.
124 o Replaced the EMX ftw with the BSD one so we implement the SuS specs.
125 o Clear FD_CLOEXEC on the handle returned by dup, dup2 and fcntl(F_DUPFD,,).
126 o Fixed a buffer size validation bug in the backend for getcwd and
127 friends. Was requiring a byte to much.
128 o Updated some TCPIP headers with GLIBC __USE_MISC #includes. (more to go)
129 o sys/fcntl.h shall include sys/stat.h in XSI mode.
130 o Added stpncpy from GLIBC.
131 o Added sys/builtin.h to sys/smutex.h.
132 o Updated features.h and sys/gnu/cdefs.h with more recent versions from cvs.
133 o Ported from GLIBC 2.3.x CVS.
134 o Fixed some waitid() and waitpid() problems related to stopping and resuming children.
135 o Updated argz.h because of bustage caused by new cdefs.h (THROW).
136 - libcrypt:
137 o Created stub library.
138 - version.smak, libc.smak:
139 o Back to betas, beta6 now.
140
1412005-07-01: knut st. osmundsen <bird-gccos2-spam@anduin.net>
142 - libc:
143 o Made isinf[lf] return -1 for negative infinity like GLIBC does.
144 o Added prototypes for nan[lf] to math.h, gcc inlines these.
145 o Ported GLIBC argp and getopt (argp requires the GLIBC one).
146 This means no optreset anylonger.
147 o Some corrections / hacks in the weak_alias departement.
148 o Shopped missing math stuff from GLIBC.
149 o Added fpu_control.h, ieee754.h and endian.h from the GLIBC tradition.
150
1512005-06-30: knut st. osmundsen <bird-gccos2-spam@anduin.net>
152 - libc:
153 o Added fwide() (dummy until LIBC07).
154 o Renamed struct _FILE to struct __sFILE to match BSD.
155 o Added wait.h for GLIBC compatability, content is #include <sys/wait.h>.
156 o Added _D_EXACT_NAMLEN and _D_ALLOC_NAMLEN macros to sys/dirent.h to
157 make GLIBC code happy.
158 o Added REG_NOERROR to regex.h to make GLIBC code happy.
159 o The three default heap handles can be duplicates of one another, this
160 could cause deadlocks in certain cases usually involing tiled memory.
161 o Added asprintf() and vasprintf().
162 o Added get_current_dir_name() (GLIBC extension).
163 o Added the strdupa() and strndupa() GLIBC extensions. These are macros
164 use alloca() to allocate the memory for the string.
165 o Added the getdelim() and getline() GLIBC extensions.
166 o Added getlogin_r() (still just a fake).
167 o Added TEMP_FAILURE_RETRY() macro to unistd.h. This is yet another GLIBC hack.
168
1692005-06-29: knut st. osmundsen <bird-gccos2-spam@anduin.net>
170 - *:
171 o Fixed stack alignment, it must be 16 bytes not 4!
172 o Fixed bustage caused by the include cleanup.
173 - libc:
174 o Added ieeefp.h and functions from FreeBSD - this is
175 the SysV/386 FP control interface. (inline only)
176 o Added fgets_unlocked and gets_unlocked.
177
1782005-06-28: knut st. osmundsen <bird-gccos2-spam@anduin.net>
179 - *:
180 o Released v0.6 beta 5.
181 o Changed versions to v0.6 rc1.
182 o Created the libc06b5 forwarder dll.
183 - libc:
184 o Added _NSIG and making NSIG and _NSIG equal to SIGRTMAX + 1.
185 o Added memrawchr and strchrnul from glibc, enabling us to shop .S
186 files from glibc at the same time.
187 o On glibc lot's of limits.h stuff is included from direct.h because of
188 need for NAME_MAX, let's do something similar.
189 o Corrected MAXNAMLEN / d_name field length.
190
1912005-06-27: knut st. osmundsen <bird-gccos2-spam@anduin.net>
192 - emxomfld, ld:
193 o Generate .def-file for dlls without one. (This only makes sense for
194 emxomfld since ld doesn't implement __declspec(dllexport) yet, but
195 anyway.)
196 - emxomf, emxomfld:
197 o Kicked out all the old weak handling (from early 3.2.2 alphas).
198
1992005-06-26: knut st. osmundsen <bird-gccos2-spam@anduin.net>
200 - libc:
201 o Added [__]isinf[fl] which seems to have been mislaid during the
202 math source import.
203 o Rewrote the libcXXXX.dll install rule to not play with emxload since
204 emxload sticks around when first loaded.
205 o Made unsetenv() cause tzset reload just like putenv() and setenv().
206 o Changed putenv() behaviour for removal (no '=' in input) to be identical
207 to unsetenv(). This solves duplicate variable testcase.
208 o Changed filestreams opened for both reading and writing to switch
209 more willingly between read and write mode.
210 o Made sscan() return EOF on EOF.
211 o Made sscan() skip blanks in input for '%%'.
212 o Implemented the stdio_unlocked stuff with BSD and GLIBC extension.
213 TODO: Require a new locktype which support recursive usage! Currently
214 a hack using 8 free flag bits is used.
215 o Corrected realpath() behaviour to return the path up to the failure
216 point on error. _realrealpath() also does this now.
217 (This also saves us a temp buffer and a copy of the result.)
218 o Fixed a bug in the handling of ".." in the path resolver.
219 o Extended that path resolver to check the directoryness of the input
220 according to flags and any trailing slashes.
221 o Change the path resolver to be very strict about UNC - UNC have exactly
222 two slashes at the start of the path.
223
2242005-06-25: knut st. osmundsen <bird-gccos2-spam@anduin.net>
225 - libc:
226 o Fixed SIGINT and similar issues with fork().
227 TODO: LIBC signals depending on 16-bit OS/2 signals will
228 still cause trouble, this needs fixing.
229 o Extended the fmutex error message.
230 o Fixed regression in the fmutex must completion code (bad fs handling).
231
2322005-06-23: knut st. osmundsen <bird-gccos2-spam@anduin.net>
233 - libc:
234 o Fixed some more incorrectness of the 'C' locale, it only
235 defines the first 128 chars.
236 o Build hack for math.h.
237 o Updated sys/stat.h, sys/resource.h and sys/_types.h to
238 FreeBSD 5.3 level.
239 o btowc(): WEOF is 32-bit, wchar_t is 16.
240 o *printf(): wide char support.
241 o sysctl(): Changed the boottime alogrithm.
242 o strxfrm(): Corrected the return values.
243 o __ftime(): Corrected regression causing the time to be 35 years wrong.
244 o strftime(): Added C99 %F.
245 o strptime(): Fixed a few parsing and calculation bugs.
246
2472005-06-19: knut st. osmundsen <bird-gccos2-spam@anduin.net>
248 - libc:
249 o File resize optimization: The JFS, HPFS and probably NET
250 will never return space which isn't zeroed when expanding
251 a file. Associate a file system information object with the
252 filehandles to keep track of such features. This also fixes
253 the fsStatFH() implementation trouble.
254 This attribute doesn't apply to CDFS. While RAMFS fails
255 the test, it zeros at open but not at setfilesize.
256 o Fixed invalid inode and dev numbers for new files, was passing
257 the wrong path around.
258
2592005-06-13: knut st. osmundsen <bird-gccos2-spam@anduin.net>
260 - libc:
261 o Auto init fmutexes.
262 o Fixed potential deadlock the first time a must-complete
263 fmutex was entered.
264 o Replaced mktemp and mkstemp with BSD versions. Also adding
265 mkstemps, mkdtemp, arc4random, arc4random_addrandom and
266 arc4random_stir.
267 o Limited the namespace pollution caused by machine/param.h
268 (included by sys/param.h which is used by lot's of tcpip headers).
269 Define _BSD_NAMESPACE_POLLUTION to get it all.
270 o Fixed bug in getitimer/setitmer, it didn't zero the old value struct
271 if the timer wasn't running.
272 o Fixed a bug in __ftime(), the time was jolting around.
273
2742005-06-12: knut st. osmundsen <bird-gccos2-spam@anduin.net>
275 - libc:
276 o Changed the LIBC_PATHREADWRITERS to a generic LIBC_HOOK_DLLS.
277 See src/emx/src/lib/sys/hooks.c for details.
278
2792005-06-11: knut st. osmundsen <bird-gccos2-spam@anduin.net>
280 - libc:
281 o The smallcnv stuff is gone, waste of space since we're not really into
282 static linking. Should've done this when switching to gdtoa.
283 o Ported the msun and some other math bits from current FreeBSD libc.
284 This mostly replaces the EMX math, except for some double long variants
285 and some EMX specific ones. This is a risky change, but it's needed
286 if we're gonna catch up on the C99 bits and make libstdc++ happy.
287 There are some new headers, complex.h and fenv.h being the importan ones.
288 float.h have gotten some updates while math.h is totally replaced.
289 More than 100 standard functions were added!
290 NOTE: msun is using MATH_ERREXCEPT (math_errhandling) and not
291 MATH_ERRNO for error reporting.
292 I really hope this is not gonna uncover more OS/2 387 mess.
293 o Handle .cmd, .bat, .btm and hash-bang script files if DosExecPgm()
294 fails. (I'm a little bit uncertain about argv[0], but it appears to work.)
295
2962005-06-05: knut st. osmundsen <bird-gccos2-spam@anduin.net>
297 - libc:
298 o the setitimer backend was making incorrect assumptions about the
299 HTIMER range - NULLHANDLE is valid for HTIMER. Changed it to use ~0U
300 as invalid handle. (untested)
301 o Default TCPIP mode is __USB_LIBC_TCPIP. When either TCPV40HDRS or TCPV41HDRS
302 are defined we are in strict mode and __USB_LIBC_TCPIP will not be defined.
303 - libomflib, emxomfar:
304 o Allow multiple modules by the same basename. This is not in tradition with
305 other librarians, but it solves incompatible behaviour between emxomfar and ar.
306 - ld:
307 o Avoid using alloca since we might easily run out of stack for big objects
308 with debuginfo.
309 - emxomf:
310 o Added support for new EMX a.out stab N_EXP (0x6c). This encodes export
311 definitions. (gcc can do __declspec(dllexport) now.)
312 TODO: ld needs updating, probably this is the right time to drop the
313 old ld and fixup the binutils port!
314
3152005-05-08: knut st. osmundsen <bird-gccos2-spam@anduin.net>
316 - libc:
317 o Added _getenv_[int|long|longlong]. Using this for LIBC_THREAD_MIN_STACK_SIZE.
318 o Ported the BSD SysV Semaphore module.
319 o Added a signal notification callback to the thread structure.
320 o Changed tcpip term callback to more generic exitlist callback (SPM).
321 o Ported the BSD SysV Shared Memory module.
322
3232005-05-05: knut st. osmundsen <bird-gccos2-spam@anduin.net>
324 - libc:
325 o Added fts.h and ported the BSD implementation.
326 It's not 100% correct since we're lacking fchdir and cannot open
327 directories - will update it when this is in place.
328 o Disabled the UF_ and SF_ defines in sys/stat.h since we don't have st_flags.
329 o Added mkfifo (stub).
330 o Added lutimes and futimes, replacing __utimes.
331
3322005-05-01: knut st. osmundsen <bird-gccos2-spam@anduin.net>
333 - libc:
334 o Fixed incorrect d_type returned by readdir and readdir_r.
335 o Changed chdir() to unix style, added _chdir_os2() as a backwards compatible
336 api. _chdir2() and chdir() are operating identically now.
337 o Fixed several incorrect/incomplete path resolve cases. Some causing
338 invalid ino values.
339 o Unlock the libc DLL before installing it (cp, make or someone might be using it).
340 o Unix root rewrite rule ends it's pszTo with a slash, this caused
341 two slashes and thus UNC trouble.
342 o Quick rewrite of access() (also affects eaccess()) to work in chroot environment.
343 o Added O_BINARY to all opens in bsd/db.
344
3452005-04-30: knut st. osmundsen <bird-gccos2-spam@anduin.net>
346 - libmoddef:
347 o Allow empty definition strings. (weakld failed on python _curses_m)
348 - weakld:
349 o Fixed incorrect .def-file parse error message.
350 - sys/param.h:
351 o Added MAXBSIZE, BKVASIZE and BKVAMASK which are used by some BSD tools.
352 - libc:
353 o Added fchmod and reimplemented chmod and lchmod. Still missing FS level
354 unix attribute handling, but this is a start.
355
3562005-04-25: knut st. osmundsen <bird-gccos2-spam@anduin.net>
357 - libc:
358 o Added the sysctl interface from BSD. Not all values are
359 supported, nor are we compatible with tcpip41 sysctl yet.
360
3612005-04-24: knut st. osmundsen <bird-gccos2-spam@anduin.net>
362 - libc:
363 o Fixed bug in getfsstate(). (df from coreutils works now!)
364 o Implemented process priority management. Added nice(), setpriority()
365 and getpriority() in the process.
366 o Added process enumeration and access function to sharedpm.
367
3682005-04-23: knut st. osmundsen <bird-gccos2-spam@anduin.net>
369 - emxomf:
370 o Refined the 'G' hack fixing globals in the text segment.
371 - libc:
372 o Added cs:eip to the abnormal termination message. (signals.c)
373 o Default stack size 512KB when caller specifies 0. (beginthr.c)
374 o Use the env.var. LIBC_THREAD_MIN_STACK_SIZE value as a byte count
375 specifying the minimum stack size. When not specified minium size
376 defaults to 4096. (beginthr.c)
377 o Added the libsocket and libsyslog libraries to the libc IMPORT library.
378 There are now two sets of libc_dll.a/lib libraries, one for tcpipv4 and
379 one for tcpipv41+ (default).
380 o Added nanosleep() and changed usleep() and sleep() to use it.
381 o Added wmemcpy(), wmemset(), wmemcmp(), wmemchr() and wmemmove(). (untested)
382 o Added SUN/HP/RTLinux api gethrtime() as a wrapper around the DosTmr* apis.
383 o Rewrote atexit() fixing problem with the callbacks calling exit() recursivly
384 and adding on_exit().
385 o Added stdio_ext.h and implemented __fpending() and __fbufsize().
386 (Just to make coreutils easier to port.)
387
3882005-03-23: knut st. osmundsen <bird-gccos2-spam@anduin.net>
389 - src/lib/sys/__spawnve.c:
390 o Fixed double free of pFS (should've been pSig).
391 Thanks for froloff.
392
3932005-03-19: knut st. osmundsen <bird-gccos2-spam@anduin.net>
394 - 386/builtin.h:
395 o Fixed serveral bugs in the atomic inc/dec functions.
396 Added a testcase for these.
397 - libc:
398 o Fixed various typos in the socket per process counting. Thanks to
399 nickk for point these out.
400
4012005-03-13: knut st. osmundsen <bird-gccos2-spam@anduin.net>
402 - version.smak:
403 o 6b4 -> 6b5.
404
405 - libc:
406 o Implemented socket duplication.
407 o Fixed various socket close & fork bugs.
408 o Applied parts of tcpipver patches from Lorne and Froloff.
409 o Fixed various UNC trouble reported by David.
410 o Fixed open problem in DosEx.
411 o Fixed incorrect pool allocation in DosEx.
412 o Fixed missing free pool item in DoxEx - *big* leak.
413 o Fixed TID/PID mixup when calling DosVerifyPidTid() from fmutex wait loop.
414 o Applied patch from Nickk for broken settimeofday().
415 o Moved iconv into LIBC.
416 o Ported GLIBC intl and made it a part of LIBC.
417 o Implemented -Zargs-wild and -Zargs-resp crt0 variations.
418 o Added support for single quoted arguments. (pray this doesn't screw up...)
419 o Replaced the __atod implementation with the NETLIB gdtoa implementation
420 used by BSD. (The old routine kept hitting assertions.)
421 o Created libc06a4 forwarder dll.
422
423 - libiconv, libdl, libm:
424 o Made these empty stub libraries.
425
426 - emxomf:
427 o Fixed getopt(,,"l::") problem. BSD getopt doesn't pass FLAG_PERMUTE for getopt and
428 thus it would consume the next argument unless it was an option. Using
429 getopt_long(,,"l::", NULL, NULL) solves the problem.
430
431 - testcases:
432 o Testcases for various new problems/code.
433
4342005-02-01: knut st. osmundsen <bird-gccos2-spam@anduin.net>
435 - libc:
436 o Fixed bogus bubble sort in setlocale/LC_COLLATE.
437
4382005-01-31: knut st. osmundsen <bird-gccos2-spam@anduin.net>
439 - libc:
440 o Applied readdir_r() errno fix from Lorne.
441 o Fixed lstat() backend on request from Lorne.
442
4432005-01-30: knut st. osmundsen <bird-gccos2-spam@anduin.net>
444 - libc:
445 o Applies setlocale patch from Lorne which fixes two bugs in LC_COLLATE.
446
4472005-01-28: knut st. osmundsen <bird-gccos2-spam@anduin.net>
448 - libc:
449 o Applied setlocale patch from Lorne.
450 o Faked the C99 lconv additions by copying the local ones.
451
4522005-01-16: knut st. osmundsen <bird-gccos2-spam@anduin.net>
453 - libos2:
454 o Added SafeDosStartSession from Dmitry Froloff.
455 - libc:
456 o Fixed year problem in settimeofday.
457 o Check if fxsave/fxrstor is supported before using them in fork().
458 ASSUMES cpuid eax=1 works on all targets.
459 o Implemented nl_langinfo(CODESET).
460 o Added bunch a of ASCII codeset name conversions.
461 o Fixed bug in socket inherit over exec/spawn. Thanks to Froloff.
462 o Forgot to take the signal semaphore when receiving a signal
463 from the 16bit handler. Thanks to Froloff.
464 o rmdir errno fix from Lorne.
465 o rmdir shall fail on symlink.
466 o rmdir shall return ENOTDIR if the path isn't a directory (but exists).
467 o Fixed setlocale(LC_ALL/LC_MONETARY, "C").
468 o Changed the process reaper to use internal signal api to skip some overhead.
469 o Fixed a return path from signal raise where the signal sem wasn't
470 released. (The out of queue node hang.)
471 - libsocket:
472 o os2_select: Fixed a couple of filehandle conversion bugs. Thanks to Froloff.
473 o soclose shouldn't return EBADF but ENOSOCK according to the specs.
474 - libsocket, libc:
475 o Return ENOSOCK instead of ENOSYS when attempting socket operation on filehandle.
476
477
4782005-01-??: knut st. osmundsen <bird-gccos2-spam@anduin.net>
479 - libc:
480 o Fixed problem with fork'ed children beliving they were
481 still forking after fork() returned. (DLL load issue)
482 o Fixed signal queue node leak. Thanks to Lorne.
483
4842004-12-20: knut st. osmundsen <bird-gccos2-spam@anduin.net>
485 - libc:
486 o Added inode and dev calculation for fstat and stat.
487 TODO: save unix EAs. opendir d_fileno?
488 o Ported all string/w* functions from FreeBSD except wcsxfrm.c.
489
4902004-12-12: knut st. osmundsen <bird-gccos2-spam@anduin.net>
491 - os2emx.h:
492 o Corrected define of NP_NBLK. (thanks to froloff)
493 - __mcount:
494 o Export stub in all builds but the profiling build.
495 - libdl:
496 o Removed and stubbed it (install). It's all in LIBC now.
497 TODO: make libm and libdl stubbing in LIBC!
498
4992004-12-09: knut st. osmundsen <bird-gccos2-spam@anduin.net>
500 - waitpid(), waitid(), wait(), wait4(), wait3(),
501 __libc_Back_processWait():
502 o Fixed missing WNOHANG handling.
503 Created waitpid-1.c testcase in testcase/misc for this problem.
504 o Clearified error codes ECHILD and EINVAL, use the waitpid() specs.
505
506 - ChangeLog.Libc:
507 o Created this file.
508
Note: See TracBrowser for help on using the repository browser.