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

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

#38: Added DosSysCtl prototype and use it on panic to check for debugger.

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