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

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

o Don't display usage() on failure, just the error message.

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