source: branches/libc-0.6/src/emx/ChangeLog.LIBC@ 2496

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

#22: Added DosFindFirst() as fallback when DosQueryPathInfo() fails to query the symlink EA in the path resolver. This problem occurs when doing stat() on an open file (pwd_mkdb example).

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