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

Last change on this file since 1887 was 1886, checked in by bird, 21 years ago

* empty log message *

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