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

Last change on this file since 1973 was 1972, checked in by bird, 21 years ago

[lf]utimes.

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