mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 10:50:07 +00:00
Add point for gconv-modules db.
This commit is contained in:
parent
bb967344ee
commit
59c3f2949c
25
PROJECTS
25
PROJECTS
@ -1,6 +1,6 @@
|
|||||||
Open jobs for finishing GNU libc:
|
Open jobs for finishing GNU libc:
|
||||||
---------------------------------
|
---------------------------------
|
||||||
Status: May 1998
|
Status: July 1998
|
||||||
|
|
||||||
If you have time and talent to take over any of the jobs below please
|
If you have time and talent to take over any of the jobs below please
|
||||||
contact <bug-glibc@gnu.org>.
|
contact <bug-glibc@gnu.org>.
|
||||||
@ -113,10 +113,6 @@ contact <bug-glibc@gnu.org>.
|
|||||||
to the page size and install the correct length only for fclose() and
|
to the page size and install the correct length only for fclose() and
|
||||||
fflush() calls.
|
fflush() calls.
|
||||||
|
|
||||||
[17] The sprof program to analyze the profiling data generated by ld.so
|
|
||||||
must be finished. It should have the same functionality as gprof
|
|
||||||
(as far as this is possible).
|
|
||||||
|
|
||||||
[18] Based on the sprof program we need tools to analyze the output. The
|
[18] Based on the sprof program we need tools to analyze the output. The
|
||||||
result should be a link map which specifies in which order the .o
|
result should be a link map which specifies in which order the .o
|
||||||
files are placed in the shared object. This should help to improve
|
files are placed in the shared object. This should help to improve
|
||||||
@ -134,3 +130,22 @@ contact <bug-glibc@gnu.org>.
|
|||||||
[21] The nscd program and the stubs in the libc should be changed so
|
[21] The nscd program and the stubs in the libc should be changed so
|
||||||
that each program uses only one socket connect. Take a look at
|
that each program uses only one socket connect. Take a look at
|
||||||
http://www.cygnus.com/~drepper/nscd.html
|
http://www.cygnus.com/~drepper/nscd.html
|
||||||
|
|
||||||
|
[22] It should be possible to have the information gconv-modules in
|
||||||
|
a simple database which is faster to access. Using libdb is probably
|
||||||
|
overkill and loading it would probably be slower than reading the
|
||||||
|
plain text file. But a file format with a simple hash table and
|
||||||
|
some data it points to should be fine. Probably it should be
|
||||||
|
two tables, one for the aliases, one for the mappings. The code
|
||||||
|
should start similar to this:
|
||||||
|
|
||||||
|
if (stat ("gconv-modules", &stp) == 0
|
||||||
|
&& stat ("gconv-modules.db", %std) == 0
|
||||||
|
&& stp.st_mtime < std.st_mtime)
|
||||||
|
{
|
||||||
|
... use the database ...
|
||||||
|
{
|
||||||
|
else
|
||||||
|
{
|
||||||
|
... use the plain file if it exists, otherwise the db ...
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user