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

Last change on this file since 1896 was 1895, checked in by bird, 21 years ago

* empty log message *

  • Property cvs2svn:cvs-rev set to 1.28
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 5.8 KB
Line 
1/* $Id: ChangeLog.LIBC 1895 2005-04-24 06:16:28Z bird $ */
2
32005-04-23: knut st. osmundsen <bird-gccos2-spam@anduin.net>
4 - emxomf:
5 o Refined the 'G' hack fixing globals in the text segment.
6 - libc:
7 o Added cs:eip to the abnormal termination message. (signals.c)
8 o Default stack size 512KB when caller specifies 0. (beginthr.c)
9 o Use the env.var. LIBC_THREAD_MIN_STACK_SIZE value as a byte count
10 specifying the minimum stack size. When not specified minium size
11 defaults to 4096. (beginthr.c)
12 o Added the libsocket and libsyslog libraries to the libc IMPORT library.
13 There are now two sets of libc_dll.a/lib libraries, one for tcpipv4 and
14 one for tcpipv41+ (default).
15 o Added nanosleep() and changed usleep() and sleep() to use it.
16
172005-03-23: knut st. osmundsen <bird-gccos2-spam@anduin.net>
18 - src/lib/sys/__spawnve.c:
19 o Fixed double free of pFS (should've been pSig).
20 Thanks for froloff.
21
222005-03-19: knut st. osmundsen <bird-gccos2-spam@anduin.net>
23 - 386/builtin.h:
24 o Fixed serveral bugs in the atomic inc/dec functions.
25 Added a testcase for these.
26 - libc:
27 o Fixed various typos in the socket per process counting. Thanks to
28 nickk for point these out.
29
302005-03-13: knut st. osmundsen <bird-gccos2-spam@anduin.net>
31 - version.smak:
32 o 6b4 -> 6b5.
33
34 - libc:
35 o Implemented socket duplication.
36 o Fixed various socket close & fork bugs.
37 o Applied parts of tcpipver patches from Lorne and Froloff.
38 o Fixed various UNC trouble reported by David.
39 o Fixed open problem in DosEx.
40 o Fixed incorrect pool allocation in DosEx.
41 o Fixed missing free pool item in DoxEx - *big* leak.
42 o Fixed TID/PID mixup when calling DosVerifyPidTid() from fmutex wait loop.
43 o Applied patch from Nickk for broken settimeofday().
44 o Moved iconv into LIBC.
45 o Ported GLIBC intl and made it a part of LIBC.
46 o Implemented -Zargs-wild and -Zargs-resp crt0 variations.
47 o Added support for single quoted arguments. (pray this doesn't screw up...)
48 o Replaced the __atod implementation with the NETLIB gdtoa implementation
49 used by BSD. (The old routine kept hitting assertions.)
50 o Created libc06a4 forwarder dll.
51
52 - libiconv, libdl, libm:
53 o Made these empty stub libraries.
54
55 - emxomf:
56 o Fixed getopt(,,"l::") problem. BSD getopt doesn't pass FLAG_PERMUTE for getopt and
57 thus it would consume the next argument unless it was an option. Using
58 getopt_long(,,"l::", NULL, NULL) solves the problem.
59
60 - testcases:
61 o Testcases for various new problems/code.
62
632005-02-01: knut st. osmundsen <bird-gccos2-spam@anduin.net>
64 - libc:
65 o Fixed bogus bubble sort in setlocale/LC_COLLATE.
66
672005-01-31: knut st. osmundsen <bird-gccos2-spam@anduin.net>
68 - libc:
69 o Applied readdir_r() errno fix from Lorne.
70 o Fixed lstat() backend on request from Lorne.
71
722005-01-30: knut st. osmundsen <bird-gccos2-spam@anduin.net>
73 - libc:
74 o Applies setlocale patch from Lorne which fixes two bugs in LC_COLLATE.
75
762005-01-28: knut st. osmundsen <bird-gccos2-spam@anduin.net>
77 - libc:
78 o Applied setlocale patch from Lorne.
79 o Faked the C99 lconv additions by copying the local ones.
80
812005-01-16: knut st. osmundsen <bird-gccos2-spam@anduin.net>
82 - libos2:
83 o Added SafeDosStartSession from Dmitry Froloff.
84 - libc:
85 o Fixed year problem in settimeofday.
86 o Check if fxsave/fxrstor is supported before using them in fork().
87 ASSUMES cpuid eax=1 works on all targets.
88 o Implemented nl_langinfo(CODESET).
89 o Added bunch a of ASCII codeset name conversions.
90 o Fixed bug in socket inherit over exec/spawn. Thanks to Froloff.
91 o Forgot to take the signal semaphore when receiving a signal
92 from the 16bit handler. Thanks to Froloff.
93 o rmdir errno fix from Lorne.
94 o rmdir shall fail on symlink.
95 o rmdir shall return ENOTDIR if the path isn't a directory (but exists).
96 o Fixed setlocale(LC_ALL/LC_MONETARY, "C").
97 o Changed the process reaper to use internal signal api to skip some overhead.
98 o Fixed a return path from signal raise where the signal sem wasn't
99 released. (The out of queue node hang.)
100 - libsocket:
101 o os2_select: Fixed a couple of filehandle conversion bugs. Thanks to Froloff.
102 o soclose shouldn't return EBADF but ENOSOCK according to the specs.
103 - libsocket, libc:
104 o Return ENOSOCK instead of ENOSYS when attempting socket operation on filehandle.
105
106
1072005-01-??: knut st. osmundsen <bird-gccos2-spam@anduin.net>
108 - libc:
109 o Fixed problem with fork'ed children beliving they were
110 still forking after fork() returned. (DLL load issue)
111 o Fixed signal queue node leak. Thanks to Lorne.
112
1132004-12-20: knut st. osmundsen <bird-gccos2-spam@anduin.net>
114 - libc:
115 o Added inode and dev calculation for fstat and stat.
116 TODO: save unix EAs. opendir d_fileno?
117 o Ported all string/w* functions from FreeBSD except wcsxfrm.c.
118
1192004-12-12: knut st. osmundsen <bird-gccos2-spam@anduin.net>
120 - os2emx.h:
121 o Corrected define of NP_NBLK. (thanks to froloff)
122 - __mcount:
123 o Export stub in all builds but the profiling build.
124 - libdl:
125 o Removed and stubbed it (install). It's all in LIBC now.
126 TODO: make libm and libdl stubbing in LIBC!
127
1282004-12-09: knut st. osmundsen <bird-gccos2-spam@anduin.net>
129 - waitpid(), waitid(), wait(), wait4(), wait3(),
130 __libc_Back_processWait():
131 o Fixed missing WNOHANG handling.
132 Created waitpid-1.c testcase in testcase/misc for this problem.
133 o Clearified error codes ECHILD and EINVAL, use the waitpid() specs.
134
135 - ChangeLog.Libc:
136 o Created this file.
137
Note: See TracBrowser for help on using the repository browser.