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

Last change on this file since 2796 was 2796, checked in by bird, 19 years ago

Fixed log problem in fork() child. Fixes #119.

  • 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: 35.0 KB
Line 
1/* $Id: ChangeLog.LIBC 2796 2006-08-28 01:19:56Z bird $ */
2
3TODO: open replace on RAMFS fails with error 32!
4
52006-08-27: knut st. osmundsen <bird-gccos2-spam@anduin.net>
6 - libc:
7 o Fixed log problem in fork() child. Fixes #119.
8 o Corrected DosSetFHState mask. Fixes #118.
9 o Implemented the new length modifiers for *scanf. Adjusted the length
10 modifier implementation for *printf. Fixes #76.
11 o Fixed problems with fork() and module loading/unloading. Fixes #76.
12 o Fixed atexit() and on_exit() problem with callbacks in unloaded DLLs. Fixes #103.
13 o Added usage counting to _CRT_init and _CRT_term. Fixing #114.
14
152006-03-26: knut st. osmundsen <bird-gccos2-spam@anduin.net>
16 - libc:
17 o Inlined _um_find_bucket.
18
192006-03-17: knut st. osmundsen <bird-gccos2-spam@anduin.net>
20 - libc:
21 o Try put the log file handle above the range of the standard handles
22 o #71: Fixed incorrect fmutex padding in FILE which cause _fcloseall
23 (and perhaps others) to crash. (thanks to froloff)
24 - emxomf:
25 o #70: Demangle symbol names in debug info. (thanks to Yuri)
26
272006-03-14: knut st. osmundsen <bird-gccos2-spam@anduin.net>
28 - libc:
29 o #69: Corrected a few problems related to dos drives and slashes in basename and dirname.
30 o __read & __write logging, and added support for more size flags to the log formatter.
31 o #68: Implemented the _GETOPT_DECLARED blocker in getopt.h too.
32
332006-03-12: knut st. osmundsen <bird-gccos2-spam@anduin.net>
34 - libc:
35 o #67: Removed termcap.h, curses.h, bsd/curses.h, bsd/termcap.h,
36 gnu/curses.h and gnu/termcap.h because we never built the libs for them.
37 o #65: Added sys/_timespec.h and uncommented it's inclusion in
38 sys/stat.h. This fixes the bustage in non-BSD source mode.
39 o Fixed wrong target name written into the symlink.
40
412006-03-09: knut st. osmundsen <bird-gccos2-spam@anduin.net>
42 - libc:
43 o #62: Fixed incorrect EOF treatment in getdelim (and in getline since that's just a
44 special case of getdelim).
45
462006-03-07: knut st. osmundsen <bird-gccos2-spam@anduin.net>
47 - libc:
48 o #49: Fixed stat backend so ctime is set, and made fstat, lstat and stat convert birthtime too.
49 o #61: Fixed incorrect ENOENT errno on symlink when it should return EEXIST.
50
512006-03-06: knut st. osmundsen <bird-gccos2-spam@anduin.net>
52 - libc:
53 o #60: Fixed blunder in exec/spawn filehandle inheritance code.
54
552006-03-04: knut st. osmundsen <bird-gccos2-spam@anduin.net>
56 - emxomfld:
57 o #55: delete the response file when reinit the args.
58 o #46: specify .map file extension to the linker.
59
602006-03-01: knut st. osmundsen <bird-gccos2-spam@anduin.net>
61 - libc:
62 o #58: The standard file handles are always initialized as open.
63
642006-02-06: knut st. osmundsen <bird-gccos2-spam@anduin.net>
65 - libc:
66 o #54: Fixed unitialized directory handle member fInUnixTree.
67 o #53: Fixed LIBC panic when _openstream locks the stream vector
68 in any of it's error cases.
69 o #52: Fixed two 'symlink/' problems in the path resolver.
70 o #51: Made unlink able to delete readonly files.
71 o #50: Inherit umask.
72 o #30: Committed forgotten header.
73 o #48: Quick implementation of the freopen(NULL,,) operation
74 to make cat from coreutils happy.
75
762006-02-04: knut st. osmundsen <bird-gccos2-spam@anduin.net>
77 - emxbind:
78 o #38: Fixed truncation bug writing to the LX nametable. (Yuri)
79 o #38: Imports and exports are limited to 255 not 127 chars. (Yuri)
80 - emxomfld:
81 o #34: Removed all the silliness trying to deal with truncated symbols.
82 - libsocket:
83 o #25: Ensure correct address length returns from recvmsg and recvfrom.
84 - libc:
85 o memalign and valloc shouldn't be in __USE_GNU in malloc.h.
86 o #30: Fixed toupper / tolower EOF regression.
87 o Fixed incorrect assertion in __libc_back_fsInfoObjRelease.
88 o #41: And added special file mode mask getter and extra validations to check that
89 the mode mask we read has a valid type. This also shuts up some bad [f]chmod paths.
90 o #41: Calc st_ino and st_dev at the end of the unix attrib getter if they are not present.
91 o #40: Fixed double slash preventing root directories from being opened.
92 o #23: Fixed two incorrect EA size fields, now creating symlinks really works.
93 o #21: Restrict reading and writing of UnixEAs to HPFS, JFS, FAT and RAMFS.
94 o #38: Added DosSysCtl prototype and use it on panic to check for debugger.
95 o #33: Fixed a return path in __libc_back_signalWait which didn't reacquire the semaphore.
96 o #32: Fixed incorrect readdir_r return code when out of files.
97
982006-02-03: knut st. osmundsen <bird-gccos2-spam@anduin.net>
99 - emxomfld:
100 o #20: use mkstemp + close instead of mktemp for the response file.
101 - ld:
102 o #20: use make_temp_file instead of mktemp. This involved including
103 libiberty.h which required some adjustments of duplicate code to work.
104
1052006-01-18: knut st. osmundsen <bird-gccos2-spam@anduin.net>
106 - libc:
107 o #30: Fixed two locale bugs. First, setlocale called a locale
108 dependent function for getting ctype flags. Second, all the
109 is<>() macros / functions was busted for non-ascii chars (-1..-128).
110
1112005-12-14: knut st. osmundsen <bird-gccos2-spam@anduin.net>
112 - emxbind:
113 o #28: Use DLL name from the .def file when present.
114 - ld:
115 o #27: Applied fix from Yuri.
116
1172005-12-18: knut st. osmundsen <bird-gccos2-spam@anduin.net>
118 - libc:
119 o #23: Corrected EA name in template from "FLAGS" to "SYMLINK".
120 o #24: Fixed chdir() crash in fts.c.
121 o #24: Fixed dirfd() problem in fts.c which prevent us from getting
122 any results in child directories.
123 o #22: Added DosFindFirst() as fallback when DosQueryPathInfo() fails
124 to query the symlink EA in the path resolver. This problem occurs
125 when doing stat() on an open file (pwd_mkdb example).
126 - emxomfld:
127 o Don't display usage() on failure, just the error message.
128 - *:
129 o Changed version to 0.6.1 and create the libc06.dll forwarder.
130
1312005-11-15: knut st. osmundsen <bird-gccos2-spam@anduin.net>
132 - libmoddef:
133 o Allow '.' and '@' in LIBRARY/NAME names.
134
1352005-11-13: knut st. osmundsen <bird-gccos2-spam@anduin.net>
136 - *:
137 o Created the 0.6 release branch.
138
1392005-11-12: knut st. osmundsen <bird-gccos2-spam@anduin.net>
140 - emxomf:
141 o Fixed problems with symbol truncation.
142 Kudos to Yuri for tracking down the places which required attention.
143 - libc:
144 o Committed the getdirents implementation (forgot to add it apparently).
145 o Created proper backend for fcntl removing F_GETOSFD in the process. Using
146 fcntl to set O_NONBLOCK on sockets works now.
147 o Fixed a generic error handling bug in ioctl, write, read, dup and dup
148 which was causing incorrect errnos.
149 o Changed line buffer from 512 to 8192 bytes in _response().
150 o Corrected shmat to return -1 instead of NULL on failure.
151 o Fixed bug in the sigsuspend (includes pause ++) handling,
152 would usually never return.
153
1542005-10-31: knut st. osmundsen <bird-gccos2-spam@anduin.net>
155 - libc:
156 o Fixed sharedpm problem on legacy systems. (Thanks to Andrew Below
157 for pointing it out.)
158
1592005-10-26: knut st. osmundsen <bird-gccos2-spam@anduin.net>
160 - libc:
161 o Implemented getdirents().
162
1632005-09-26: knut st. osmundsen <bird-gccos2-spam@anduin.net>
164 - libc:
165 o Implemented __libc_Back_ioFHToPath using __LIBC_FH::pszNativePath.
166
1672005-09-25: knut st. osmundsen <bird-gccos2-spam@anduin.net>
168 - libc:
169 o Implemented fchdir().
170 o Implemented inheritance of open directory handles. Unfortunately,
171 I ran out of size bits for the bundle type, so the SPM bit is no
172 longer compatible with earlier versions. The consequences
173 of this are related to inheritance and signaling - so recompile!
174
1752005-08-28: knut st. osmundsen <bird-gccos2-spam@anduin.net>
176 - libc:
177 o Reworked the open backend, adding directory support. Some O_*
178 flags was changed in the process, breaking the old ABI.
179 This is not fully tested.
180 o Added more BSD fields to struct stat, breaking the old ABI.
181 The mtime field and ctime fields will now keep the same values
182 and the creation time is to be found in birthtime. This means that
183 ctime will be updated in a few places where it doesn't on unix - but
184 this is probably better than previously where it wasn't ever updated
185 when it should.
186 o Removed forwarder dlls since struct stat, O_* and __LIBC_FH is
187 soon going to be incompatible with rc1 and older versions.
188 - version.smak:
189 o Changed version number back to 3.3.5 / 0.6 rc2.
190
1912005-08-27: knut st. osmundsen <bird-gccos2-spam@anduin.net>
192 - libc:
193 o Fixed lot's of unix attribute (in EA) handling.
194 o Started preparing for open() to work on directories so
195 fchdir() can be implemented and opendir reimplemented.
196 This will break libsocket backwards compatability.
197 o Added _hstrdup.
198 o Fixed two cases where the signal semaphore was incorrectly unlocked
199 after signalDeliver().
200 o Don't try the '.exe' too early on executables (exec/spawn), this broke
201 execution of './configure' and other scripts with no extension.
202
2032005-08-24: knut st. osmundsen <bird-gccos2-spam@anduin.net>
204 - libc:
205 o Fixed bad panic format types in safesems.
206
2072005-08-21: knut st. osmundsen <bird-gccos2-spam@anduin.net>
208 - emxbind, emxomfld:
209 o Default stack size set to 1MB.
210 The old defaults were 8MB (emxbind) and 8KB (emxomfld).
211 - libc:
212 o Filled in the NULLs in sys_signame and sys_siglist.
213 o Added __libc_Back_gfProcessHandleHashBangScripts and
214 __libc_Back_gfProcessHandlePCBatchScripts for use in shells which
215 can handle such scripts more efficiently than libc.
216 o Fixed some bugs related to finding the interpreter in the spawn/exec backend.
217 o Merged the signal semaphore handling into the safe sems and
218 made signals use them instead.
219 o Tried to workaround the race conditions in __libc_Back_safesemEvSleep/Wakeup.
220 These might affect SysV sems.
221 o Corrected the declarations of _DLL_InitTerm.
222
2232005-08-20: Lorne Sunley <lsunley@mb.sympatico. >
224 - libc:
225 o Added OBJ_FORK to the allocations in sysv_shm.
226
2272005-08-20: knut st. osmundsen <bird-gccos2-spam@anduin.net>
228 - libc:
229 o Define _EMX_SOURCE (__USE_EMX) along with _BSD_SOURCE and _SVID_SOURCE as
230 defaults in features.h.
231 o Protect the fork operations by the means of must complete so
232 signals won't interrupt us till we're finished. This might leave
233 unkillable processes around if fork goes highwire.
234 o Better exception logging during fork.
235 o Use MMX memcpy in fork (if supported).
236 o The C function __libc_Back_processFork() replaces the pure assembly __fork().
237 o Added _memcpy_amd.
238 o Fixed some logging statements in sharedpm.c.
239 o Log __fmutex_release_internal_must_complete.
240 o Corrected a few prototypes in process.h to use pid_t.
241
2422005-08-13: knut st. osmundsen <bird-gccos2-spam@anduin.net>
243 - libc:
244 o Added SH_COMPAT to share.h and emulate it as SH_DENYNO (just like watcom).
245 The SH_COMPAT shareing mode is not available to OS/2 processes, only DOS / os2krnl.
246
2472005-08-02: knut st. osmundsen <bird-gccos2-spam@anduin.net>
248 - libc:
249 o __libc_back_fsNativeFileModeSet(): The long set api is broken
250 in 14.103b & c (at least) so avoid it where it isn't strictly required.
251
2522005-07-24: knut st. osmundsen <bird-gccos2-spam@anduin.net>
253 - libos2:
254 o Added some missing INCL_DOSERRORS #defines (very odd ones).
255 - emximp:
256 o Fixed bad done string allocation.
257 - ld:
258 o Fixed a case of memory access after free.
259 o Switched back to alloca and adding 23 MB of stack.
260
2612005-07-21: knut st. osmundsen <bird-gccos2-spam@anduin.net>
262 - libc:
263 o unistd.h prototype of encrypt() shall return void not int.
264 o Fixed __USE_GNU tests in ftw.h and sys/dirent.h.
265
2662005-07-17: knut st. osmundsen <bird-gccos2-spam@anduin.net>
267 - libc:
268 o LIBC_ASSERT*() are for internal libc errors, LIBCLOG_ERROR*() are
269 for user related error. Big code adjustements.
270 o Fixed a few smaller issues.
271 o Started fixing exec() backend.
272 o Fixed some more mktime / localtime bugs.
273 o Fixed crash on simple LIBC_ASSERT() caused by NULL format string.
274 o Generate device numbers for devices and pipes too.
275 o Fixed mixup of Dev and Inode during filehandle inheritance.
276 o Fixed __dup and __dup2 bug in relation to the FD_CLOEXEC clearing.
277 o Fixed bug in codepage normalization during setlocale().
278 o Fixed bug in regex where the lock was overwritten after initialization.
279 o Switch the glibc locks to smutex to avoid leaking event semaphores.
280 o Added _smutex_try_request().
281 o Fixed __libc_back_fsResolve to always set fInUnixTree so the result can
282 be adjusted correctly on failure as well.
283 - version.smak:
284 o Changed version number back to 3.3.5 / 0.6 rc1.
285
2862005-07-11: knut st. osmundsen <bird-gccos2-spam@anduin.net>
287 - libos2:
288 o UniStrFromUcs added and UniStrToUcs to uconv.h.
289 Added UniStrFromUcs, UniStrToUcs, UniMalloc and UniFree to unicode.imp.
290
2912005-07-10: knut st. osmundsen <bird-gccos2-spam@anduin.net>
292 - libc:
293 o Replaced BSD regex with the new GLIBC implementation.
294 o Fixed two bad bugs in the handling of the list of free
295 SPM notification structures.
296 o Moved the codeset standardization up a bit so nl_langinfo
297 and setlocale reports the same codeset.
298
2992005-07-06: knut st. osmundsen <bird-gccos2-spam@anduin.net>
300 - libc:
301 o Changed utimes() to allow NULL pointer parameter.
302 Please note that BSD will crash in if you try it there.
303 o Renamed the BSD setmode to bsd_setmode and put back the
304 PC setmode.
305
3062005-07-05: knut st. osmundsen <bird-gccos2-spam@anduin.net>
307 - libc:
308 o Fixed spawn/fork + fork() + exec/spawn/fork in the child.
309 o Kill any known decentants to prevent them from being
310 adopted by our parent. (On UNIX processes begin made
311 orphants are adopted and killed by the init process.)
312 o Added signal handler types for POSIX, BSD and GNU conformance.
313 o Reap embryos when the waiter thread is querying spm about
314 the death certificate. This, together with a tiny fix
315 in __spawnve() cures the bad spm process leaks when spawning
316 non-libc processes seen with make when building libc.
317
3182005-07-04: knut st. osmundsen <bird-gccos2-spam@anduin.net>
319 - libc:
320 o Added the BSD optreset global to getopt.
321 o Changed PC setmode to _setmode. As it collides with a BSD 4.4. interface.
322 o Added the BSD 4.4. setmode/getmode functions from FreeBSD.
323 o Added getsid and getpgid, correcting the getpgrp implementation.
324 o Added/replaced setbuf, setbuffer and setlinebuf from BSD.
325
3262005-07-03: knut st. osmundsen <bird-gccos2-spam@anduin.net>
327 - libc:
328 o Collected the different panic routines into one single routine
329 in the backend, __libc_Back_panic[V](). The routine supports
330 very simple printf like message formatting. By default it wil
331 dump any available registers and attempt dumping the process
332 before killing it. This behaviour can be configured with the
333 env var.: LIBC_PANIC=[nodump][terse][quiet][breakpoint]
334
3352005-07-02: knut st. osmundsen <bird-gccos2-spam@anduin.net>
336 - libc:
337 o Added obstack.h and it's implementation from GLIBC.
338 o malloc and realloc must set errno to ENOMEM on failure.
339 o Fixed assertion during realloc(p, -256) to return failure
340 instead. Added a few more overflow checks.
341 o Added %m (GLIBC extension) to the printf familiy. %m means
342 priting strerror(errno), it takes no arguments.
343 o Fixed serveral bugs in the C/POSIX locale
344 o Implemented the LC_MESSAGES locale.
345 o Fixed mixup in fts.c port.
346 o Replaced the EMX ftw with the BSD one so we implement the SuS specs.
347 o Clear FD_CLOEXEC on the handle returned by dup, dup2 and fcntl(F_DUPFD,,).
348 o Fixed a buffer size validation bug in the backend for getcwd and
349 friends. Was requiring a byte to much.
350 o Updated some TCPIP headers with GLIBC __USE_MISC #includes. (more to go)
351 o sys/fcntl.h shall include sys/stat.h in XSI mode.
352 o Added stpncpy from GLIBC.
353 o Added sys/builtin.h to sys/smutex.h.
354 o Updated features.h and sys/gnu/cdefs.h with more recent versions from cvs.
355 o Ported from GLIBC 2.3.x CVS.
356 o Fixed some waitid() and waitpid() problems related to stopping and resuming children.
357 o Updated argz.h because of bustage caused by new cdefs.h (THROW).
358 - libcrypt:
359 o Created stub library.
360 - version.smak, libc.smak:
361 o Back to betas, beta6 now.
362
3632005-07-01: knut st. osmundsen <bird-gccos2-spam@anduin.net>
364 - libc:
365 o Made isinf[lf] return -1 for negative infinity like GLIBC does.
366 o Added prototypes for nan[lf] to math.h, gcc inlines these.
367 o Ported GLIBC argp and getopt (argp requires the GLIBC one).
368 This means no optreset anylonger.
369 o Some corrections / hacks in the weak_alias departement.
370 o Shopped missing math stuff from GLIBC.
371 o Added fpu_control.h, ieee754.h and endian.h from the GLIBC tradition.
372
3732005-06-30: knut st. osmundsen <bird-gccos2-spam@anduin.net>
374 - libc:
375 o Added fwide() (dummy until LIBC07).
376 o Renamed struct _FILE to struct __sFILE to match BSD.
377 o Added wait.h for GLIBC compatability, content is #include <sys/wait.h>.
378 o Added _D_EXACT_NAMLEN and _D_ALLOC_NAMLEN macros to sys/dirent.h to
379 make GLIBC code happy.
380 o Added REG_NOERROR to regex.h to make GLIBC code happy.
381 o The three default heap handles can be duplicates of one another, this
382 could cause deadlocks in certain cases usually involing tiled memory.
383 o Added asprintf() and vasprintf().
384 o Added get_current_dir_name() (GLIBC extension).
385 o Added the strdupa() and strndupa() GLIBC extensions. These are macros
386 use alloca() to allocate the memory for the string.
387 o Added the getdelim() and getline() GLIBC extensions.
388 o Added getlogin_r() (still just a fake).
389 o Added TEMP_FAILURE_RETRY() macro to unistd.h. This is yet another GLIBC hack.
390
3912005-06-29: knut st. osmundsen <bird-gccos2-spam@anduin.net>
392 - *:
393 o Fixed stack alignment, it must be 16 bytes not 4!
394 o Fixed bustage caused by the include cleanup.
395 - libc:
396 o Added ieeefp.h and functions from FreeBSD - this is
397 the SysV/386 FP control interface. (inline only)
398 o Added fgets_unlocked and gets_unlocked.
399
4002005-06-28: knut st. osmundsen <bird-gccos2-spam@anduin.net>
401 - *:
402 o Released v0.6 beta 5.
403 o Changed versions to v0.6 rc1.
404 o Created the libc06b5 forwarder dll.
405 - libc:
406 o Added _NSIG and making NSIG and _NSIG equal to SIGRTMAX + 1.
407 o Added memrawchr and strchrnul from glibc, enabling us to shop .S
408 files from glibc at the same time.
409 o On glibc lot's of limits.h stuff is included from direct.h because of
410 need for NAME_MAX, let's do something similar.
411 o Corrected MAXNAMLEN / d_name field length.
412
4132005-06-27: knut st. osmundsen <bird-gccos2-spam@anduin.net>
414 - emxomfld, ld:
415 o Generate .def-file for dlls without one. (This only makes sense for
416 emxomfld since ld doesn't implement __declspec(dllexport) yet, but
417 anyway.)
418 - emxomf, emxomfld:
419 o Kicked out all the old weak handling (from early 3.2.2 alphas).
420
4212005-06-26: knut st. osmundsen <bird-gccos2-spam@anduin.net>
422 - libc:
423 o Added [__]isinf[fl] which seems to have been mislaid during the
424 math source import.
425 o Rewrote the libcXXXX.dll install rule to not play with emxload since
426 emxload sticks around when first loaded.
427 o Made unsetenv() cause tzset reload just like putenv() and setenv().
428 o Changed putenv() behaviour for removal (no '=' in input) to be identical
429 to unsetenv(). This solves duplicate variable testcase.
430 o Changed filestreams opened for both reading and writing to switch
431 more willingly between read and write mode.
432 o Made sscan() return EOF on EOF.
433 o Made sscan() skip blanks in input for '%%'.
434 o Implemented the stdio_unlocked stuff with BSD and GLIBC extension.
435 TODO: Require a new locktype which support recursive usage! Currently
436 a hack using 8 free flag bits is used.
437 o Corrected realpath() behaviour to return the path up to the failure
438 point on error. _realrealpath() also does this now.
439 (This also saves us a temp buffer and a copy of the result.)
440 o Fixed a bug in the handling of ".." in the path resolver.
441 o Extended that path resolver to check the directoryness of the input
442 according to flags and any trailing slashes.
443 o Change the path resolver to be very strict about UNC - UNC have exactly
444 two slashes at the start of the path.
445
4462005-06-25: knut st. osmundsen <bird-gccos2-spam@anduin.net>
447 - libc:
448 o Fixed SIGINT and similar issues with fork().
449 TODO: LIBC signals depending on 16-bit OS/2 signals will
450 still cause trouble, this needs fixing.
451 o Extended the fmutex error message.
452 o Fixed regression in the fmutex must completion code (bad fs handling).
453
4542005-06-23: knut st. osmundsen <bird-gccos2-spam@anduin.net>
455 - libc:
456 o Fixed some more incorrectness of the 'C' locale, it only
457 defines the first 128 chars.
458 o Build hack for math.h.
459 o Updated sys/stat.h, sys/resource.h and sys/_types.h to
460 FreeBSD 5.3 level.
461 o btowc(): WEOF is 32-bit, wchar_t is 16.
462 o *printf(): wide char support.
463 o sysctl(): Changed the boottime alogrithm.
464 o strxfrm(): Corrected the return values.
465 o __ftime(): Corrected regression causing the time to be 35 years wrong.
466 o strftime(): Added C99 %F.
467 o strptime(): Fixed a few parsing and calculation bugs.
468
4692005-06-19: knut st. osmundsen <bird-gccos2-spam@anduin.net>
470 - libc:
471 o File resize optimization: The JFS, HPFS and probably NET
472 will never return space which isn't zeroed when expanding
473 a file. Associate a file system information object with the
474 filehandles to keep track of such features. This also fixes
475 the fsStatFH() implementation trouble.
476 This attribute doesn't apply to CDFS. While RAMFS fails
477 the test, it zeros at open but not at setfilesize.
478 o Fixed invalid inode and dev numbers for new files, was passing
479 the wrong path around.
480
4812005-06-13: knut st. osmundsen <bird-gccos2-spam@anduin.net>
482 - libc:
483 o Auto init fmutexes.
484 o Fixed potential deadlock the first time a must-complete
485 fmutex was entered.
486 o Replaced mktemp and mkstemp with BSD versions. Also adding
487 mkstemps, mkdtemp, arc4random, arc4random_addrandom and
488 arc4random_stir.
489 o Limited the namespace pollution caused by machine/param.h
490 (included by sys/param.h which is used by lot's of tcpip headers).
491 Define _BSD_NAMESPACE_POLLUTION to get it all.
492 o Fixed bug in getitimer/setitmer, it didn't zero the old value struct
493 if the timer wasn't running.
494 o Fixed a bug in __ftime(), the time was jolting around.
495
4962005-06-12: knut st. osmundsen <bird-gccos2-spam@anduin.net>
497 - libc:
498 o Changed the LIBC_PATHREADWRITERS to a generic LIBC_HOOK_DLLS.
499 See src/emx/src/lib/sys/hooks.c for details.
500
5012005-06-11: knut st. osmundsen <bird-gccos2-spam@anduin.net>
502 - libc:
503 o The smallcnv stuff is gone, waste of space since we're not really into
504 static linking. Should've done this when switching to gdtoa.
505 o Ported the msun and some other math bits from current FreeBSD libc.
506 This mostly replaces the EMX math, except for some double long variants
507 and some EMX specific ones. This is a risky change, but it's needed
508 if we're gonna catch up on the C99 bits and make libstdc++ happy.
509 There are some new headers, complex.h and fenv.h being the importan ones.
510 float.h have gotten some updates while math.h is totally replaced.
511 More than 100 standard functions were added!
512 NOTE: msun is using MATH_ERREXCEPT (math_errhandling) and not
513 MATH_ERRNO for error reporting.
514 I really hope this is not gonna uncover more OS/2 387 mess.
515 o Handle .cmd, .bat, .btm and hash-bang script files if DosExecPgm()
516 fails. (I'm a little bit uncertain about argv[0], but it appears to work.)
517
5182005-06-05: knut st. osmundsen <bird-gccos2-spam@anduin.net>
519 - libc:
520 o the setitimer backend was making incorrect assumptions about the
521 HTIMER range - NULLHANDLE is valid for HTIMER. Changed it to use ~0U
522 as invalid handle. (untested)
523 o Default TCPIP mode is __USB_LIBC_TCPIP. When either TCPV40HDRS or TCPV41HDRS
524 are defined we are in strict mode and __USB_LIBC_TCPIP will not be defined.
525 - libomflib, emxomfar:
526 o Allow multiple modules by the same basename. This is not in tradition with
527 other librarians, but it solves incompatible behaviour between emxomfar and ar.
528 - ld:
529 o Avoid using alloca since we might easily run out of stack for big objects
530 with debuginfo.
531 - emxomf:
532 o Added support for new EMX a.out stab N_EXP (0x6c). This encodes export
533 definitions. (gcc can do __declspec(dllexport) now.)
534 TODO: ld needs updating, probably this is the right time to drop the
535 old ld and fixup the binutils port!
536
5372005-05-08: knut st. osmundsen <bird-gccos2-spam@anduin.net>
538 - libc:
539 o Added _getenv_[int|long|longlong]. Using this for LIBC_THREAD_MIN_STACK_SIZE.
540 o Ported the BSD SysV Semaphore module.
541 o Added a signal notification callback to the thread structure.
542 o Changed tcpip term callback to more generic exitlist callback (SPM).
543 o Ported the BSD SysV Shared Memory module.
544
5452005-05-05: knut st. osmundsen <bird-gccos2-spam@anduin.net>
546 - libc:
547 o Added fts.h and ported the BSD implementation.
548 It's not 100% correct since we're lacking fchdir and cannot open
549 directories - will update it when this is in place.
550 o Disabled the UF_ and SF_ defines in sys/stat.h since we don't have st_flags.
551 o Added mkfifo (stub).
552 o Added lutimes and futimes, replacing __utimes.
553
5542005-05-01: knut st. osmundsen <bird-gccos2-spam@anduin.net>
555 - libc:
556 o Fixed incorrect d_type returned by readdir and readdir_r.
557 o Changed chdir() to unix style, added _chdir_os2() as a backwards compatible
558 api. _chdir2() and chdir() are operating identically now.
559 o Fixed several incorrect/incomplete path resolve cases. Some causing
560 invalid ino values.
561 o Unlock the libc DLL before installing it (cp, make or someone might be using it).
562 o Unix root rewrite rule ends it's pszTo with a slash, this caused
563 two slashes and thus UNC trouble.
564 o Quick rewrite of access() (also affects eaccess()) to work in chroot environment.
565 o Added O_BINARY to all opens in bsd/db.
566
5672005-04-30: knut st. osmundsen <bird-gccos2-spam@anduin.net>
568 - libmoddef:
569 o Allow empty definition strings. (weakld failed on python _curses_m)
570 - weakld:
571 o Fixed incorrect .def-file parse error message.
572 - sys/param.h:
573 o Added MAXBSIZE, BKVASIZE and BKVAMASK which are used by some BSD tools.
574 - libc:
575 o Added fchmod and reimplemented chmod and lchmod. Still missing FS level
576 unix attribute handling, but this is a start.
577
5782005-04-25: knut st. osmundsen <bird-gccos2-spam@anduin.net>
579 - libc:
580 o Added the sysctl interface from BSD. Not all values are
581 supported, nor are we compatible with tcpip41 sysctl yet.
582
5832005-04-24: knut st. osmundsen <bird-gccos2-spam@anduin.net>
584 - libc:
585 o Fixed bug in getfsstate(). (df from coreutils works now!)
586 o Implemented process priority management. Added nice(), setpriority()
587 and getpriority() in the process.
588 o Added process enumeration and access function to sharedpm.
589
5902005-04-23: knut st. osmundsen <bird-gccos2-spam@anduin.net>
591 - emxomf:
592 o Refined the 'G' hack fixing globals in the text segment.
593 - libc:
594 o Added cs:eip to the abnormal termination message. (signals.c)
595 o Default stack size 512KB when caller specifies 0. (beginthr.c)
596 o Use the env.var. LIBC_THREAD_MIN_STACK_SIZE value as a byte count
597 specifying the minimum stack size. When not specified minium size
598 defaults to 4096. (beginthr.c)
599 o Added the libsocket and libsyslog libraries to the libc IMPORT library.
600 There are now two sets of libc_dll.a/lib libraries, one for tcpipv4 and
601 one for tcpipv41+ (default).
602 o Added nanosleep() and changed usleep() and sleep() to use it.
603 o Added wmemcpy(), wmemset(), wmemcmp(), wmemchr() and wmemmove(). (untested)
604 o Added SUN/HP/RTLinux api gethrtime() as a wrapper around the DosTmr* apis.
605 o Rewrote atexit() fixing problem with the callbacks calling exit() recursivly
606 and adding on_exit().
607 o Added stdio_ext.h and implemented __fpending() and __fbufsize().
608 (Just to make coreutils easier to port.)
609
6102005-03-23: knut st. osmundsen <bird-gccos2-spam@anduin.net>
611 - src/lib/sys/__spawnve.c:
612 o Fixed double free of pFS (should've been pSig).
613 Thanks for froloff.
614
6152005-03-19: knut st. osmundsen <bird-gccos2-spam@anduin.net>
616 - 386/builtin.h:
617 o Fixed serveral bugs in the atomic inc/dec functions.
618 Added a testcase for these.
619 - libc:
620 o Fixed various typos in the socket per process counting. Thanks to
621 nickk for point these out.
622
6232005-03-13: knut st. osmundsen <bird-gccos2-spam@anduin.net>
624 - version.smak:
625 o 6b4 -> 6b5.
626
627 - libc:
628 o Implemented socket duplication.
629 o Fixed various socket close & fork bugs.
630 o Applied parts of tcpipver patches from Lorne and Froloff.
631 o Fixed various UNC trouble reported by David.
632 o Fixed open problem in DosEx.
633 o Fixed incorrect pool allocation in DosEx.
634 o Fixed missing free pool item in DoxEx - *big* leak.
635 o Fixed TID/PID mixup when calling DosVerifyPidTid() from fmutex wait loop.
636 o Applied patch from Nickk for broken settimeofday().
637 o Moved iconv into LIBC.
638 o Ported GLIBC intl and made it a part of LIBC.
639 o Implemented -Zargs-wild and -Zargs-resp crt0 variations.
640 o Added support for single quoted arguments. (pray this doesn't screw up...)
641 o Replaced the __atod implementation with the NETLIB gdtoa implementation
642 used by BSD. (The old routine kept hitting assertions.)
643 o Created libc06a4 forwarder dll.
644
645 - libiconv, libdl, libm:
646 o Made these empty stub libraries.
647
648 - emxomf:
649 o Fixed getopt(,,"l::") problem. BSD getopt doesn't pass FLAG_PERMUTE for getopt and
650 thus it would consume the next argument unless it was an option. Using
651 getopt_long(,,"l::", NULL, NULL) solves the problem.
652
653 - testcases:
654 o Testcases for various new problems/code.
655
6562005-02-01: knut st. osmundsen <bird-gccos2-spam@anduin.net>
657 - libc:
658 o Fixed bogus bubble sort in setlocale/LC_COLLATE.
659
6602005-01-31: knut st. osmundsen <bird-gccos2-spam@anduin.net>
661 - libc:
662 o Applied readdir_r() errno fix from Lorne.
663 o Fixed lstat() backend on request from Lorne.
664
6652005-01-30: knut st. osmundsen <bird-gccos2-spam@anduin.net>
666 - libc:
667 o Applies setlocale patch from Lorne which fixes two bugs in LC_COLLATE.
668
6692005-01-28: knut st. osmundsen <bird-gccos2-spam@anduin.net>
670 - libc:
671 o Applied setlocale patch from Lorne.
672 o Faked the C99 lconv additions by copying the local ones.
673
6742005-01-16: knut st. osmundsen <bird-gccos2-spam@anduin.net>
675 - libos2:
676 o Added SafeDosStartSession from Dmitry Froloff.
677 - libc:
678 o Fixed year problem in settimeofday.
679 o Check if fxsave/fxrstor is supported before using them in fork().
680 ASSUMES cpuid eax=1 works on all targets.
681 o Implemented nl_langinfo(CODESET).
682 o Added bunch a of ASCII codeset name conversions.
683 o Fixed bug in socket inherit over exec/spawn. Thanks to Froloff.
684 o Forgot to take the signal semaphore when receiving a signal
685 from the 16bit handler. Thanks to Froloff.
686 o rmdir errno fix from Lorne.
687 o rmdir shall fail on symlink.
688 o rmdir shall return ENOTDIR if the path isn't a directory (but exists).
689 o Fixed setlocale(LC_ALL/LC_MONETARY, "C").
690 o Changed the process reaper to use internal signal api to skip some overhead.
691 o Fixed a return path from signal raise where the signal sem wasn't
692 released. (The out of queue node hang.)
693 - libsocket:
694 o os2_select: Fixed a couple of filehandle conversion bugs. Thanks to Froloff.
695 o soclose shouldn't return EBADF but ENOSOCK according to the specs.
696 - libsocket, libc:
697 o Return ENOSOCK instead of ENOSYS when attempting socket operation on filehandle.
698
699
7002005-01-??: knut st. osmundsen <bird-gccos2-spam@anduin.net>
701 - libc:
702 o Fixed problem with fork'ed children beliving they were
703 still forking after fork() returned. (DLL load issue)
704 o Fixed signal queue node leak. Thanks to Lorne.
705
7062004-12-20: knut st. osmundsen <bird-gccos2-spam@anduin.net>
707 - libc:
708 o Added inode and dev calculation for fstat and stat.
709 TODO: save unix EAs. opendir d_fileno?
710 o Ported all string/w* functions from FreeBSD except wcsxfrm.c.
711
7122004-12-12: knut st. osmundsen <bird-gccos2-spam@anduin.net>
713 - os2emx.h:
714 o Corrected define of NP_NBLK. (thanks to froloff)
715 - __mcount:
716 o Export stub in all builds but the profiling build.
717 - libdl:
718 o Removed and stubbed it (install). It's all in LIBC now.
719 TODO: make libm and libdl stubbing in LIBC!
720
7212004-12-09: knut st. osmundsen <bird-gccos2-spam@anduin.net>
722 - waitpid(), waitid(), wait(), wait4(), wait3(),
723 __libc_Back_processWait():
724 o Fixed missing WNOHANG handling.
725 Created waitpid-1.c testcase in testcase/misc for this problem.
726 o Clearified error codes ECHILD and EINVAL, use the waitpid() specs.
727
728 - ChangeLog.Libc:
729 o Created this file.
730
Note: See TracBrowser for help on using the repository browser.