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

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

* empty log message *

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