| 1 | /* $Id: ChangeLog.LIBC 2113 2005-06-29 04:06:03Z bird $ */
|
|---|
| 2 |
|
|---|
| 3 | 2005-06-28: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 4 | - *:
|
|---|
| 5 | o Released v0.6 beta 5.
|
|---|
| 6 | o Changed versions to v0.6 rc1.
|
|---|
| 7 | o Created the libc06b5 forwarder dll.
|
|---|
| 8 | - libc:
|
|---|
| 9 | o Added _NSIG and making NSIG and _NSIG equal to SIGRTMAX + 1.
|
|---|
| 10 | o Added memrawchr and strchrnul from glibc, enabling us to shop .S
|
|---|
| 11 | files from glibc at the same time.
|
|---|
| 12 | o On glibc lot's of limits.h stuff is included from direct.h because of
|
|---|
| 13 | need for NAME_MAX, let's do something similar.
|
|---|
| 14 | o Corrected MAXNAMLEN / d_name field length.
|
|---|
| 15 |
|
|---|
| 16 | 2005-06-27: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 17 | - emxomfld, ld:
|
|---|
| 18 | o Generate .def-file for dlls without one. (This only makes sense for
|
|---|
| 19 | emxomfld since ld doesn't implement __declspec(dllexport) yet, but
|
|---|
| 20 | anyway.)
|
|---|
| 21 | - emxomf, emxomfld:
|
|---|
| 22 | o Kicked out all the old weak handling (from early 3.2.2 alphas).
|
|---|
| 23 |
|
|---|
| 24 | 2005-06-26: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 25 | - libc:
|
|---|
| 26 | o Added [__]isinf[fl] which seems to have been mislaid during the
|
|---|
| 27 | math source import.
|
|---|
| 28 | o Rewrote the libcXXXX.dll install rule to not play with emxload since
|
|---|
| 29 | emxload sticks around when first loaded.
|
|---|
| 30 | o Made unsetenv() cause tzset reload just like putenv() and setenv().
|
|---|
| 31 | o Changed putenv() behaviour for removal (no '=' in input) to be identical
|
|---|
| 32 | to unsetenv(). This solves duplicate variable testcase.
|
|---|
| 33 | o Changed filestreams opened for both reading and writing to switch
|
|---|
| 34 | more willingly between read and write mode.
|
|---|
| 35 | o Made sscan() return EOF on EOF.
|
|---|
| 36 | o Made sscan() skip blanks in input for '%%'.
|
|---|
| 37 | o Implemented the stdio_unlocked stuff with BSD and GLIBC extension.
|
|---|
| 38 | TODO: Require a new locktype which support recursive usage! Currently
|
|---|
| 39 | a hack using 8 free flag bits is used.
|
|---|
| 40 | o Corrected realpath() behaviour to return the path up to the failure
|
|---|
| 41 | point on error. _realrealpath() also does this now.
|
|---|
| 42 | (This also saves us a temp buffer and a copy of the result.)
|
|---|
| 43 | o Fixed a bug in the handling of ".." in the path resolver.
|
|---|
| 44 | o Extended that path resolver to check the directoryness of the input
|
|---|
| 45 | according to flags and any trailing slashes.
|
|---|
| 46 | o Change the path resolver to be very strict about UNC - UNC have exactly
|
|---|
| 47 | two slashes at the start of the path.
|
|---|
| 48 |
|
|---|
| 49 | 2005-06-25: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 50 | - libc:
|
|---|
| 51 | o Fixed SIGINT and similar issues with fork().
|
|---|
| 52 | TODO: LIBC signals depending on 16-bit OS/2 signals will
|
|---|
| 53 | still cause trouble, this needs fixing.
|
|---|
| 54 | o Extended the fmutex error message.
|
|---|
| 55 | o Fixed regression in the fmutex must completion code (bad fs handling).
|
|---|
| 56 |
|
|---|
| 57 | 2005-06-23: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 58 | - libc:
|
|---|
| 59 | o Fixed some more incorrectness of the 'C' locale, it only
|
|---|
| 60 | defines the first 128 chars.
|
|---|
| 61 | o Build hack for math.h.
|
|---|
| 62 | o Updated sys/stat.h, sys/resource.h and sys/_types.h to
|
|---|
| 63 | FreeBSD 5.3 level.
|
|---|
| 64 | o btowc(): WEOF is 32-bit, wchar_t is 16.
|
|---|
| 65 | o *printf(): wide char support.
|
|---|
| 66 | o sysctl(): Changed the boottime alogrithm.
|
|---|
| 67 | o strxfrm(): Corrected the return values.
|
|---|
| 68 | o __ftime(): Corrected regression causing the time to be 35 years wrong.
|
|---|
| 69 | o strftime(): Added C99 %F.
|
|---|
| 70 | o strptime(): Fixed a few parsing and calculation bugs.
|
|---|
| 71 |
|
|---|
| 72 | 2005-06-19: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 73 | - libc:
|
|---|
| 74 | o File resize optimization: The JFS, HPFS and probably NET
|
|---|
| 75 | will never return space which isn't zeroed when expanding
|
|---|
| 76 | a file. Associate a file system information object with the
|
|---|
| 77 | filehandles to keep track of such features. This also fixes
|
|---|
| 78 | the fsStatFH() implementation trouble.
|
|---|
| 79 | This attribute doesn't apply to CDFS. While RAMFS fails
|
|---|
| 80 | the test, it zeros at open but not at setfilesize.
|
|---|
| 81 | o Fixed invalid inode and dev numbers for new files, was passing
|
|---|
| 82 | the wrong path around.
|
|---|
| 83 |
|
|---|
| 84 | 2005-06-13: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 85 | - libc:
|
|---|
| 86 | o Auto init fmutexes.
|
|---|
| 87 | o Fixed potential deadlock the first time a must-complete
|
|---|
| 88 | fmutex was entered.
|
|---|
| 89 | o Replaced mktemp and mkstemp with BSD versions. Also adding
|
|---|
| 90 | mkstemps, mkdtemp, arc4random, arc4random_addrandom and
|
|---|
| 91 | arc4random_stir.
|
|---|
| 92 | o Limited the namespace pollution caused by machine/param.h
|
|---|
| 93 | (included by sys/param.h which is used by lot's of tcpip headers).
|
|---|
| 94 | Define _BSD_NAMESPACE_POLLUTION to get it all.
|
|---|
| 95 | o Fixed bug in getitimer/setitmer, it didn't zero the old value struct
|
|---|
| 96 | if the timer wasn't running.
|
|---|
| 97 | o Fixed a bug in __ftime(), the time was jolting around.
|
|---|
| 98 |
|
|---|
| 99 | 2005-06-12: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 100 | - libc:
|
|---|
| 101 | o Changed the LIBC_PATHREADWRITERS to a generic LIBC_HOOK_DLLS.
|
|---|
| 102 | See src/emx/src/lib/sys/hooks.c for details.
|
|---|
| 103 |
|
|---|
| 104 | 2005-06-11: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 105 | - libc:
|
|---|
| 106 | o The smallcnv stuff is gone, waste of space since we're not really into
|
|---|
| 107 | static linking. Should've done this when switching to gdtoa.
|
|---|
| 108 | o Ported the msun and some other math bits from current FreeBSD libc.
|
|---|
| 109 | This mostly replaces the EMX math, except for some double long variants
|
|---|
| 110 | and some EMX specific ones. This is a risky change, but it's needed
|
|---|
| 111 | if we're gonna catch up on the C99 bits and make libstdc++ happy.
|
|---|
| 112 | There are some new headers, complex.h and fenv.h being the importan ones.
|
|---|
| 113 | float.h have gotten some updates while math.h is totally replaced.
|
|---|
| 114 | More than 100 standard functions were added!
|
|---|
| 115 | NOTE: msun is using MATH_ERREXCEPT (math_errhandling) and not
|
|---|
| 116 | MATH_ERRNO for error reporting.
|
|---|
| 117 | I really hope this is not gonna uncover more OS/2 387 mess.
|
|---|
| 118 | o Handle .cmd, .bat, .btm and hash-bang script files if DosExecPgm()
|
|---|
| 119 | fails. (I'm a little bit uncertain about argv[0], but it appears to work.)
|
|---|
| 120 |
|
|---|
| 121 | 2005-06-05: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 122 | - libc:
|
|---|
| 123 | o the setitimer backend was making incorrect assumptions about the
|
|---|
| 124 | HTIMER range - NULLHANDLE is valid for HTIMER. Changed it to use ~0U
|
|---|
| 125 | as invalid handle. (untested)
|
|---|
| 126 | o Default TCPIP mode is __USB_LIBC_TCPIP. When either TCPV40HDRS or TCPV41HDRS
|
|---|
| 127 | are defined we are in strict mode and __USB_LIBC_TCPIP will not be defined.
|
|---|
| 128 | - libomflib, emxomfar:
|
|---|
| 129 | o Allow multiple modules by the same basename. This is not in tradition with
|
|---|
| 130 | other librarians, but it solves incompatible behaviour between emxomfar and ar.
|
|---|
| 131 | - ld:
|
|---|
| 132 | o Avoid using alloca since we might easily run out of stack for big objects
|
|---|
| 133 | with debuginfo.
|
|---|
| 134 | - emxomf:
|
|---|
| 135 | o Added support for new EMX a.out stab N_EXP (0x6c). This encodes export
|
|---|
| 136 | definitions. (gcc can do __declspec(dllexport) now.)
|
|---|
| 137 | TODO: ld needs updating, probably this is the right time to drop the
|
|---|
| 138 | old ld and fixup the binutils port!
|
|---|
| 139 |
|
|---|
| 140 | 2005-05-08: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 141 | - libc:
|
|---|
| 142 | o Added _getenv_[int|long|longlong]. Using this for LIBC_THREAD_MIN_STACK_SIZE.
|
|---|
| 143 | o Ported the BSD SysV Semaphore module.
|
|---|
| 144 | o Added a signal notification callback to the thread structure.
|
|---|
| 145 | o Changed tcpip term callback to more generic exitlist callback (SPM).
|
|---|
| 146 | o Ported the BSD SysV Shared Memory module.
|
|---|
| 147 |
|
|---|
| 148 | 2005-05-05: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 149 | - libc:
|
|---|
| 150 | o Added fts.h and ported the BSD implementation.
|
|---|
| 151 | It's not 100% correct since we're lacking fchdir and cannot open
|
|---|
| 152 | directories - will update it when this is in place.
|
|---|
| 153 | o Disabled the UF_ and SF_ defines in sys/stat.h since we don't have st_flags.
|
|---|
| 154 | o Added mkfifo (stub).
|
|---|
| 155 | o Added lutimes and futimes, replacing __utimes.
|
|---|
| 156 |
|
|---|
| 157 | 2005-05-01: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 158 | - libc:
|
|---|
| 159 | o Fixed incorrect d_type returned by readdir and readdir_r.
|
|---|
| 160 | o Changed chdir() to unix style, added _chdir_os2() as a backwards compatible
|
|---|
| 161 | api. _chdir2() and chdir() are operating identically now.
|
|---|
| 162 | o Fixed several incorrect/incomplete path resolve cases. Some causing
|
|---|
| 163 | invalid ino values.
|
|---|
| 164 | o Unlock the libc DLL before installing it (cp, make or someone might be using it).
|
|---|
| 165 | o Unix root rewrite rule ends it's pszTo with a slash, this caused
|
|---|
| 166 | two slashes and thus UNC trouble.
|
|---|
| 167 | o Quick rewrite of access() (also affects eaccess()) to work in chroot environment.
|
|---|
| 168 | o Added O_BINARY to all opens in bsd/db.
|
|---|
| 169 |
|
|---|
| 170 | 2005-04-30: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 171 | - libmoddef:
|
|---|
| 172 | o Allow empty definition strings. (weakld failed on python _curses_m)
|
|---|
| 173 | - weakld:
|
|---|
| 174 | o Fixed incorrect .def-file parse error message.
|
|---|
| 175 | - sys/param.h:
|
|---|
| 176 | o Added MAXBSIZE, BKVASIZE and BKVAMASK which are used by some BSD tools.
|
|---|
| 177 | - libc:
|
|---|
| 178 | o Added fchmod and reimplemented chmod and lchmod. Still missing FS level
|
|---|
| 179 | unix attribute handling, but this is a start.
|
|---|
| 180 |
|
|---|
| 181 | 2005-04-25: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 182 | - libc:
|
|---|
| 183 | o Added the sysctl interface from BSD. Not all values are
|
|---|
| 184 | supported, nor are we compatible with tcpip41 sysctl yet.
|
|---|
| 185 |
|
|---|
| 186 | 2005-04-24: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 187 | - libc:
|
|---|
| 188 | o Fixed bug in getfsstate(). (df from coreutils works now!)
|
|---|
| 189 | o Implemented process priority management. Added nice(), setpriority()
|
|---|
| 190 | and getpriority() in the process.
|
|---|
| 191 | o Added process enumeration and access function to sharedpm.
|
|---|
| 192 |
|
|---|
| 193 | 2005-04-23: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 194 | - emxomf:
|
|---|
| 195 | o Refined the 'G' hack fixing globals in the text segment.
|
|---|
| 196 | - libc:
|
|---|
| 197 | o Added cs:eip to the abnormal termination message. (signals.c)
|
|---|
| 198 | o Default stack size 512KB when caller specifies 0. (beginthr.c)
|
|---|
| 199 | o Use the env.var. LIBC_THREAD_MIN_STACK_SIZE value as a byte count
|
|---|
| 200 | specifying the minimum stack size. When not specified minium size
|
|---|
| 201 | defaults to 4096. (beginthr.c)
|
|---|
| 202 | o Added the libsocket and libsyslog libraries to the libc IMPORT library.
|
|---|
| 203 | There are now two sets of libc_dll.a/lib libraries, one for tcpipv4 and
|
|---|
| 204 | one for tcpipv41+ (default).
|
|---|
| 205 | o Added nanosleep() and changed usleep() and sleep() to use it.
|
|---|
| 206 | o Added wmemcpy(), wmemset(), wmemcmp(), wmemchr() and wmemmove(). (untested)
|
|---|
| 207 | o Added SUN/HP/RTLinux api gethrtime() as a wrapper around the DosTmr* apis.
|
|---|
| 208 | o Rewrote atexit() fixing problem with the callbacks calling exit() recursivly
|
|---|
| 209 | and adding on_exit().
|
|---|
| 210 | o Added stdio_ext.h and implemented __fpending() and __fbufsize().
|
|---|
| 211 | (Just to make coreutils easier to port.)
|
|---|
| 212 |
|
|---|
| 213 | 2005-03-23: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 214 | - src/lib/sys/__spawnve.c:
|
|---|
| 215 | o Fixed double free of pFS (should've been pSig).
|
|---|
| 216 | Thanks for froloff.
|
|---|
| 217 |
|
|---|
| 218 | 2005-03-19: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 219 | - 386/builtin.h:
|
|---|
| 220 | o Fixed serveral bugs in the atomic inc/dec functions.
|
|---|
| 221 | Added a testcase for these.
|
|---|
| 222 | - libc:
|
|---|
| 223 | o Fixed various typos in the socket per process counting. Thanks to
|
|---|
| 224 | nickk for point these out.
|
|---|
| 225 |
|
|---|
| 226 | 2005-03-13: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 227 | - version.smak:
|
|---|
| 228 | o 6b4 -> 6b5.
|
|---|
| 229 |
|
|---|
| 230 | - libc:
|
|---|
| 231 | o Implemented socket duplication.
|
|---|
| 232 | o Fixed various socket close & fork bugs.
|
|---|
| 233 | o Applied parts of tcpipver patches from Lorne and Froloff.
|
|---|
| 234 | o Fixed various UNC trouble reported by David.
|
|---|
| 235 | o Fixed open problem in DosEx.
|
|---|
| 236 | o Fixed incorrect pool allocation in DosEx.
|
|---|
| 237 | o Fixed missing free pool item in DoxEx - *big* leak.
|
|---|
| 238 | o Fixed TID/PID mixup when calling DosVerifyPidTid() from fmutex wait loop.
|
|---|
| 239 | o Applied patch from Nickk for broken settimeofday().
|
|---|
| 240 | o Moved iconv into LIBC.
|
|---|
| 241 | o Ported GLIBC intl and made it a part of LIBC.
|
|---|
| 242 | o Implemented -Zargs-wild and -Zargs-resp crt0 variations.
|
|---|
| 243 | o Added support for single quoted arguments. (pray this doesn't screw up...)
|
|---|
| 244 | o Replaced the __atod implementation with the NETLIB gdtoa implementation
|
|---|
| 245 | used by BSD. (The old routine kept hitting assertions.)
|
|---|
| 246 | o Created libc06a4 forwarder dll.
|
|---|
| 247 |
|
|---|
| 248 | - libiconv, libdl, libm:
|
|---|
| 249 | o Made these empty stub libraries.
|
|---|
| 250 |
|
|---|
| 251 | - emxomf:
|
|---|
| 252 | o Fixed getopt(,,"l::") problem. BSD getopt doesn't pass FLAG_PERMUTE for getopt and
|
|---|
| 253 | thus it would consume the next argument unless it was an option. Using
|
|---|
| 254 | getopt_long(,,"l::", NULL, NULL) solves the problem.
|
|---|
| 255 |
|
|---|
| 256 | - testcases:
|
|---|
| 257 | o Testcases for various new problems/code.
|
|---|
| 258 |
|
|---|
| 259 | 2005-02-01: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 260 | - libc:
|
|---|
| 261 | o Fixed bogus bubble sort in setlocale/LC_COLLATE.
|
|---|
| 262 |
|
|---|
| 263 | 2005-01-31: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 264 | - libc:
|
|---|
| 265 | o Applied readdir_r() errno fix from Lorne.
|
|---|
| 266 | o Fixed lstat() backend on request from Lorne.
|
|---|
| 267 |
|
|---|
| 268 | 2005-01-30: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 269 | - libc:
|
|---|
| 270 | o Applies setlocale patch from Lorne which fixes two bugs in LC_COLLATE.
|
|---|
| 271 |
|
|---|
| 272 | 2005-01-28: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 273 | - libc:
|
|---|
| 274 | o Applied setlocale patch from Lorne.
|
|---|
| 275 | o Faked the C99 lconv additions by copying the local ones.
|
|---|
| 276 |
|
|---|
| 277 | 2005-01-16: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 278 | - libos2:
|
|---|
| 279 | o Added SafeDosStartSession from Dmitry Froloff.
|
|---|
| 280 | - libc:
|
|---|
| 281 | o Fixed year problem in settimeofday.
|
|---|
| 282 | o Check if fxsave/fxrstor is supported before using them in fork().
|
|---|
| 283 | ASSUMES cpuid eax=1 works on all targets.
|
|---|
| 284 | o Implemented nl_langinfo(CODESET).
|
|---|
| 285 | o Added bunch a of ASCII codeset name conversions.
|
|---|
| 286 | o Fixed bug in socket inherit over exec/spawn. Thanks to Froloff.
|
|---|
| 287 | o Forgot to take the signal semaphore when receiving a signal
|
|---|
| 288 | from the 16bit handler. Thanks to Froloff.
|
|---|
| 289 | o rmdir errno fix from Lorne.
|
|---|
| 290 | o rmdir shall fail on symlink.
|
|---|
| 291 | o rmdir shall return ENOTDIR if the path isn't a directory (but exists).
|
|---|
| 292 | o Fixed setlocale(LC_ALL/LC_MONETARY, "C").
|
|---|
| 293 | o Changed the process reaper to use internal signal api to skip some overhead.
|
|---|
| 294 | o Fixed a return path from signal raise where the signal sem wasn't
|
|---|
| 295 | released. (The out of queue node hang.)
|
|---|
| 296 | - libsocket:
|
|---|
| 297 | o os2_select: Fixed a couple of filehandle conversion bugs. Thanks to Froloff.
|
|---|
| 298 | o soclose shouldn't return EBADF but ENOSOCK according to the specs.
|
|---|
| 299 | - libsocket, libc:
|
|---|
| 300 | o Return ENOSOCK instead of ENOSYS when attempting socket operation on filehandle.
|
|---|
| 301 |
|
|---|
| 302 |
|
|---|
| 303 | 2005-01-??: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 304 | - libc:
|
|---|
| 305 | o Fixed problem with fork'ed children beliving they were
|
|---|
| 306 | still forking after fork() returned. (DLL load issue)
|
|---|
| 307 | o Fixed signal queue node leak. Thanks to Lorne.
|
|---|
| 308 |
|
|---|
| 309 | 2004-12-20: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 310 | - libc:
|
|---|
| 311 | o Added inode and dev calculation for fstat and stat.
|
|---|
| 312 | TODO: save unix EAs. opendir d_fileno?
|
|---|
| 313 | o Ported all string/w* functions from FreeBSD except wcsxfrm.c.
|
|---|
| 314 |
|
|---|
| 315 | 2004-12-12: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 316 | - os2emx.h:
|
|---|
| 317 | o Corrected define of NP_NBLK. (thanks to froloff)
|
|---|
| 318 | - __mcount:
|
|---|
| 319 | o Export stub in all builds but the profiling build.
|
|---|
| 320 | - libdl:
|
|---|
| 321 | o Removed and stubbed it (install). It's all in LIBC now.
|
|---|
| 322 | TODO: make libm and libdl stubbing in LIBC!
|
|---|
| 323 |
|
|---|
| 324 | 2004-12-09: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
|---|
| 325 | - waitpid(), waitid(), wait(), wait4(), wait3(),
|
|---|
| 326 | __libc_Back_processWait():
|
|---|
| 327 | o Fixed missing WNOHANG handling.
|
|---|
| 328 | Created waitpid-1.c testcase in testcase/misc for this problem.
|
|---|
| 329 | o Clearified error codes ECHILD and EINVAL, use the waitpid() specs.
|
|---|
| 330 |
|
|---|
| 331 | - ChangeLog.Libc:
|
|---|
| 332 | o Created this file.
|
|---|
| 333 |
|
|---|