source: trunk/src/emx/ChangeLog.LIBC@ 1990

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

* empty log message *

  • Property cvs2svn:cvs-rev set to 1.47
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 9.1 KB
Line 
1/* $Id: ChangeLog.LIBC 1989 2005-06-05 00:53:29Z bird $ */
2
32005-06-05: knut st. osmundsen <bird-gccos2-spam@anduin.net>
4 - libc:
5 o the setitimer backend was making incorrect assumptions about the
6 HTIMER range - NULLHANDLE is valid for HTIMER. Changed it to use ~0U
7 as invalid handle. (untested)
8
92005-05-08: knut st. osmundsen <bird-gccos2-spam@anduin.net>
10 - libc:
11 o Added _getenv_[int|long|longlong]. Using this for LIBC_THREAD_MIN_STACK_SIZE.
12 o Ported the BSD SysV Semaphore module.
13 o Added a signal notification callback to the thread structure.
14 o Changed tcpip term callback to more generic exitlist callback (SPM).
15 o Ported the BSD SysV Shared Memory module.
16
172005-05-05: knut st. osmundsen <bird-gccos2-spam@anduin.net>
18 - libc:
19 o Added fts.h and ported the BSD implementation.
20 It's not 100% correct since we're lacking fchdir and cannot open
21 directories - will update it when this is in place.
22 o Disabled the UF_ and SF_ defines in sys/stat.h since we don't have st_flags.
23 o Added mkfifo (stub).
24 o Added lutimes and futimes, replacing __utimes.
25
262005-05-01: knut st. osmundsen <bird-gccos2-spam@anduin.net>
27 - libc:
28 o Fixed incorrect d_type returned by readdir and readdir_r.
29 o Changed chdir() to unix style, added _chdir_os2() as a backwards compatible
30 api. _chdir2() and chdir() are operating identically now.
31 o Fixed several incorrect/incomplete path resolve cases. Some causing
32 invalid ino values.
33 o Unlock the libc DLL before installing it (cp, make or someone might be using it).
34 o Unix root rewrite rule ends it's pszTo with a slash, this caused
35 two slashes and thus UNC trouble.
36 o Quick rewrite of access() (also affects eaccess()) to work in chroot environment.
37 o Added O_BINARY to all opens in bsd/db.
38
392005-04-30: knut st. osmundsen <bird-gccos2-spam@anduin.net>
40 - libmoddef:
41 o Allow empty definition strings. (weakld failed on python _curses_m)
42 - weakld:
43 o Fixed incorrect .def-file parse error message.
44 - sys/param.h:
45 o Added MAXBSIZE, BKVASIZE and BKVAMASK which are used by some BSD tools.
46 - libc:
47 o Added fchmod and reimplemented chmod and lchmod. Still missing FS level
48 unix attribute handling, but this is a start.
49
502005-04-25: knut st. osmundsen <bird-gccos2-spam@anduin.net>
51 - libc:
52 o Added the sysctl interface from BSD. Not all values are
53 supported, nor are we compatible with tcpip41 sysctl yet.
54
552005-04-24: knut st. osmundsen <bird-gccos2-spam@anduin.net>
56 - libc:
57 o Fixed bug in getfsstate(). (df from coreutils works now!)
58 o Implemented process priority management. Added nice(), setpriority()
59 and getpriority() in the process.
60 o Added process enumeration and access function to sharedpm.
61
622005-04-23: knut st. osmundsen <bird-gccos2-spam@anduin.net>
63 - emxomf:
64 o Refined the 'G' hack fixing globals in the text segment.
65 - libc:
66 o Added cs:eip to the abnormal termination message. (signals.c)
67 o Default stack size 512KB when caller specifies 0. (beginthr.c)
68 o Use the env.var. LIBC_THREAD_MIN_STACK_SIZE value as a byte count
69 specifying the minimum stack size. When not specified minium size
70 defaults to 4096. (beginthr.c)
71 o Added the libsocket and libsyslog libraries to the libc IMPORT library.
72 There are now two sets of libc_dll.a/lib libraries, one for tcpipv4 and
73 one for tcpipv41+ (default).
74 o Added nanosleep() and changed usleep() and sleep() to use it.
75 o Added wmemcpy(), wmemset(), wmemcmp(), wmemchr() and wmemmove(). (untested)
76 o Added SUN/HP/RTLinux api gethrtime() as a wrapper around the DosTmr* apis.
77 o Rewrote atexit() fixing problem with the callbacks calling exit() recursivly
78 and adding on_exit().
79 o Added stdio_ext.h and implemented __fpending() and __fbufsize().
80 (Just to make coreutils easier to port.)
81
822005-03-23: knut st. osmundsen <bird-gccos2-spam@anduin.net>
83 - src/lib/sys/__spawnve.c:
84 o Fixed double free of pFS (should've been pSig).
85 Thanks for froloff.
86
872005-03-19: knut st. osmundsen <bird-gccos2-spam@anduin.net>
88 - 386/builtin.h:
89 o Fixed serveral bugs in the atomic inc/dec functions.
90 Added a testcase for these.
91 - libc:
92 o Fixed various typos in the socket per process counting. Thanks to
93 nickk for point these out.
94
952005-03-13: knut st. osmundsen <bird-gccos2-spam@anduin.net>
96 - version.smak:
97 o 6b4 -> 6b5.
98
99 - libc:
100 o Implemented socket duplication.
101 o Fixed various socket close & fork bugs.
102 o Applied parts of tcpipver patches from Lorne and Froloff.
103 o Fixed various UNC trouble reported by David.
104 o Fixed open problem in DosEx.
105 o Fixed incorrect pool allocation in DosEx.
106 o Fixed missing free pool item in DoxEx - *big* leak.
107 o Fixed TID/PID mixup when calling DosVerifyPidTid() from fmutex wait loop.
108 o Applied patch from Nickk for broken settimeofday().
109 o Moved iconv into LIBC.
110 o Ported GLIBC intl and made it a part of LIBC.
111 o Implemented -Zargs-wild and -Zargs-resp crt0 variations.
112 o Added support for single quoted arguments. (pray this doesn't screw up...)
113 o Replaced the __atod implementation with the NETLIB gdtoa implementation
114 used by BSD. (The old routine kept hitting assertions.)
115 o Created libc06a4 forwarder dll.
116
117 - libiconv, libdl, libm:
118 o Made these empty stub libraries.
119
120 - emxomf:
121 o Fixed getopt(,,"l::") problem. BSD getopt doesn't pass FLAG_PERMUTE for getopt and
122 thus it would consume the next argument unless it was an option. Using
123 getopt_long(,,"l::", NULL, NULL) solves the problem.
124
125 - testcases:
126 o Testcases for various new problems/code.
127
1282005-02-01: knut st. osmundsen <bird-gccos2-spam@anduin.net>
129 - libc:
130 o Fixed bogus bubble sort in setlocale/LC_COLLATE.
131
1322005-01-31: knut st. osmundsen <bird-gccos2-spam@anduin.net>
133 - libc:
134 o Applied readdir_r() errno fix from Lorne.
135 o Fixed lstat() backend on request from Lorne.
136
1372005-01-30: knut st. osmundsen <bird-gccos2-spam@anduin.net>
138 - libc:
139 o Applies setlocale patch from Lorne which fixes two bugs in LC_COLLATE.
140
1412005-01-28: knut st. osmundsen <bird-gccos2-spam@anduin.net>
142 - libc:
143 o Applied setlocale patch from Lorne.
144 o Faked the C99 lconv additions by copying the local ones.
145
1462005-01-16: knut st. osmundsen <bird-gccos2-spam@anduin.net>
147 - libos2:
148 o Added SafeDosStartSession from Dmitry Froloff.
149 - libc:
150 o Fixed year problem in settimeofday.
151 o Check if fxsave/fxrstor is supported before using them in fork().
152 ASSUMES cpuid eax=1 works on all targets.
153 o Implemented nl_langinfo(CODESET).
154 o Added bunch a of ASCII codeset name conversions.
155 o Fixed bug in socket inherit over exec/spawn. Thanks to Froloff.
156 o Forgot to take the signal semaphore when receiving a signal
157 from the 16bit handler. Thanks to Froloff.
158 o rmdir errno fix from Lorne.
159 o rmdir shall fail on symlink.
160 o rmdir shall return ENOTDIR if the path isn't a directory (but exists).
161 o Fixed setlocale(LC_ALL/LC_MONETARY, "C").
162 o Changed the process reaper to use internal signal api to skip some overhead.
163 o Fixed a return path from signal raise where the signal sem wasn't
164 released. (The out of queue node hang.)
165 - libsocket:
166 o os2_select: Fixed a couple of filehandle conversion bugs. Thanks to Froloff.
167 o soclose shouldn't return EBADF but ENOSOCK according to the specs.
168 - libsocket, libc:
169 o Return ENOSOCK instead of ENOSYS when attempting socket operation on filehandle.
170
171
1722005-01-??: knut st. osmundsen <bird-gccos2-spam@anduin.net>
173 - libc:
174 o Fixed problem with fork'ed children beliving they were
175 still forking after fork() returned. (DLL load issue)
176 o Fixed signal queue node leak. Thanks to Lorne.
177
1782004-12-20: knut st. osmundsen <bird-gccos2-spam@anduin.net>
179 - libc:
180 o Added inode and dev calculation for fstat and stat.
181 TODO: save unix EAs. opendir d_fileno?
182 o Ported all string/w* functions from FreeBSD except wcsxfrm.c.
183
1842004-12-12: knut st. osmundsen <bird-gccos2-spam@anduin.net>
185 - os2emx.h:
186 o Corrected define of NP_NBLK. (thanks to froloff)
187 - __mcount:
188 o Export stub in all builds but the profiling build.
189 - libdl:
190 o Removed and stubbed it (install). It's all in LIBC now.
191 TODO: make libm and libdl stubbing in LIBC!
192
1932004-12-09: knut st. osmundsen <bird-gccos2-spam@anduin.net>
194 - waitpid(), waitid(), wait(), wait4(), wait3(),
195 __libc_Back_processWait():
196 o Fixed missing WNOHANG handling.
197 Created waitpid-1.c testcase in testcase/misc for this problem.
198 o Clearified error codes ECHILD and EINVAL, use the waitpid() specs.
199
200 - ChangeLog.Libc:
201 o Created this file.
202
Note: See TracBrowser for help on using the repository browser.