• R/O
  • HTTP
  • SSH
  • HTTPS

List of commits

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

RSS
Rev. Time Author
deec524 2004-02-14 20:30:39 Eric Andersen

Joakim Tjernlund writes:

Hi it is me again.

This is the latest ldso patch. the NEW weak symbol handling works now
with a little special handling in _dl_find_hash(). You get to chose
if you want the new or old handling :)

There was 2 missing _dl_check_if_named_library_is_loaded() calls in _dlopen().

I then disabled the _dl_check_if_named_library_is_loaded() in dl-elf.c since
it is rendundant.

Question, why does some _dl_linux_resolver(), like i386, have 2 calls
to _dl_find_hash()? I think that is wrong, isn't it?

I really hope you can check this out soon ...

7bd4a2f 2004-02-13 20:11:10 Eric Andersen

Yet more fixups..

4eaa2fd 2004-02-13 20:05:36 Eric Andersen

Done free path if it equals not_found
Remember to flose an fopened file

bc237c2 2004-02-13 20:01:02 Eric Andersen

Another little touch up to avoid problems...

f0bc0bd 2004-02-13 19:56:43 Eric Andersen

A better fix...

b1cd838 2004-02-13 19:52:41 Eric Andersen

Fix the annoying "not a dynamic executable" problem when running ldd
on libuClibc

89c2ca8 2004-02-13 19:39:59 Eric Andersen

Cleanup whitespace and formatting

6eec2e3 2004-02-13 18:51:32 Eric Andersen

Avoid potential double free when locate_library_file() is used
on fully resolved names

1218c09 2004-02-13 10:03:48 Manuel Novoa III

Oops.. The custom stream funcs should only be compiled if wanted.

3368dbc 2004-02-12 17:51:21 Eric Andersen

Based on a problem report and patch from Florian Schirmer, fix a compile
problem with mips -- contrary to my expectation gcc on mips _always_ defines
__PIC__ which breaks the assumption inherent in my code. This should fix
things up.

9b90650 2004-02-12 15:59:32 Eric Andersen

More todo list updates

e274131 2004-02-12 09:38:34 Eric Andersen

Paul Mundt lethal at linux-sh dot org writes:

We can't use trapa #0xff on sh2, the only permissible trapa ranges are
32 to 63. On SH-2, we use trapa32 to issue a break in the same way that
trapa #0xff is used on SH-3/4. This behavior is implementation specific,
but is what is used in sh-ipl+g, linux, eCos, uITRON, etc. so we follow
suit here.

273639f 2004-02-12 09:28:04 Eric Andersen

Add missing mips specific include/sys/user.h

935b262 2004-02-12 09:18:33 Eric Andersen

Add our own copies of the include/scsi header files, per what glibc
does, rather than depending on the kernel header files.
-Erik

082e680 2004-02-12 08:48:50 Manuel Novoa III

New stdio core. Should be more maintainable. Fixes a couple of bugs.
Codepaths streamlined. Improved performance for nonthreaded apps
when linked with a thread-enabled libc.
Minor iconv bug and some locale/thread related startup issues fixed.
These showed up in getting a gcj-compiled java helloworld app running.
Removed some old extension functions... _stdio_fdout and _stdio_fsfopen.

17c2176 2004-02-12 01:56:14 Manuel Novoa III

Fix bug from the syscall reorganization, detected by python's test_poll.py.
The #ifdef __NR_poll test was failing because it was done before any includes.
Hence, the emulation was always being used.

NOTE: The emulation fails a couple of tests in test_poll.py!

be6ad2b 2004-02-11 20:03:32 Eric Andersen

yet another todo item

93510ba 2004-02-11 12:00:17 Eric Andersen

mention valgrind/atexit annoyance

7b28e09 2004-02-11 11:48:13 Eric Andersen

Update TODO list with some items for 1.0

0f10d6d 2004-02-11 05:52:00 Eric Andersen

Do not include the create_module syscall if it is not present

2fb0a71 2004-02-10 22:31:43 Eric Andersen

Eliminate the PIE support option, and simply support that all the time

b340a56 2004-02-10 20:47:57 Eric Andersen

Fix function prototype to match the official ELF standard hash function

c0847e6 2004-02-10 18:41:56 Eric Andersen

Fixup header file naming

ef92d76 2004-02-10 18:40:18 Eric Andersen

clean trailing whitespace

7070940 2004-02-10 18:26:57 Eric Andersen

Rework file naming, aiming for at least a vague level of consistancy

c201ba7 2004-02-10 15:54:27 Eric Andersen

oops, manditory forgotten patch

499c27e 2004-02-10 15:50:28 Eric Andersen

Fixup the definition of _dl_open, and move some bits back where they were,
till I properly finish the next step in my evil plan.

ac1281c 2004-02-09 16:10:38 Eric Andersen

Nicolas Pitre writes:

Hello Erik,

My patch adding ARM assembly soft-float routines to gcc also changes the
default FPA float word ordering for the saner VFP word ordering which is
also the order anyone would expect on a little endian machine.

Problem is that uClibc curently hardwire floats to big endian (FPA) ordering
in all cases.

Please consider the attached patch to fix this problem.


Nicolas

13311ad 2004-02-08 19:59:52 Eric Andersen

Move _dl_printf and _dl_malloc to ldso, which is a more sensible
location for this stuff

d1c8a86 2004-02-08 19:57:59 Eric Andersen

Cleanup whitespace and formatting