• 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
39b1226 2004-04-24 06:39:34 Eric Andersen

It turns out that asm/reg.h is missing from the 2.6.x kernel headers,
which prevents libthread_db (used by gdb) from compiling. Include a
copy within include/sys/user.h for mips, per what was done in glibc.

68fd847 2004-04-21 03:51:24 Eric Andersen

blah

a65b98a 2004-04-21 02:15:53 Eric Andersen

Fix grammar and spelling

4f21b08 2004-04-21 02:09:40 Eric Andersen

Mention uwoody

fbfde14 2004-04-20 15:33:11 Eric Andersen

Cope with gcc 3.4's more aggressive persuit of attribute unused

44ea58d 2004-04-20 15:27:59 Eric Andersen

We don't need these...

2c6eb93 2004-04-15 01:21:27 Manuel Novoa III

Fix typo.

7cea35e 2004-04-06 21:19:22 Eric Andersen

Fix a bug noticed by Oleg I. Vdovikin, oleg at cs dot msu dot su.
This code in uClibc would attempt to set the default facility if
none was specified. Except none being specified is 0, which is
also LOG_KERN, therefore klogd could never get kernel messages
logged as LOG_KERN.

e4dfc35 2004-03-25 07:21:07 Eric Andersen

glibc does not provide pppio.h, and our doing so conflicts
with the ppp package

e7a1ee4 2004-03-20 05:53:54 Eric Andersen

Per patch from Stefan Holst, do not try to compile these
syscalls if they are not supported.

33d1ef8 2004-03-20 05:38:10 Eric Andersen

Patch from Stefan Holst to fix argv[0]

00fec46 2004-03-19 21:03:30 Eric Andersen

Based on a patch from Alexandre Oliva, allow uClibc to compile
with __NR_mmap is not available (i.e. only __NR_mmap2)

909c7fd 2004-03-18 20:43:18 Eric Andersen

Alexandre Oliva writes:

This patch arranges for the .so files in say /usr/lib to be soft links
to ../../lib, instead of to /some/arbitrary/pathname/lib. This
enables seamless relocation of a toolchain containing the development
and run time trees in a sys-root.

e450548 2004-03-18 20:41:12 Eric Andersen

Alexandre Oliva writes:

I added this function after I posted the last version of the FR-V
patch. Add syscall.c.

42a08c7 2004-03-18 20:38:02 Eric Andersen

Supply '__bzero' with 'bzero' as just a weak alias (since it is not SuSv3)

ada7878 2004-03-18 20:28:51 Eric Andersen

Based on a patch from Alexandre Oliva, remove all reference to 'bzero' (which
is not a SuSv3 symbol). Rather than using __bzero internally per Alexandre's
original patch, use memset instead.

0c91a78 2004-03-18 20:17:14 Eric Andersen

Look in /usr/X11R6/lib as well

e32376a 2004-03-18 20:12:34 Eric Andersen

Reduce memory used by static buffers and allocate that memory dynamicly
instead. Based on an initial patch from Tobias Anderberg, but reworked. I
asked Tobias to look into doing something more like what is done in busybox,
but that proved to be a pain.

One possible concern is that these buffers will probably show up as
memory leaks i.e. with valgrind. Perhaps we should add in an atexit
call to free this memory right after we allocate it?

38cd8e7 2004-03-18 17:00:40 Eric Andersen

Joakim Tjernlund writes:

Hi

I just noticed that gcc has an "b"(Address base register) operand that
will match all "r" registers but r0. It is a better fix then adding
r0 to the clobber list.

What do you think?

a740502 2004-03-12 09:21:20 Eric Andersen

Cope gracefully with missing module syscalls

93261cd 2004-03-11 19:10:53 Manuel Novoa III

Rewrite the err/warn functions as they were broken (__noreturn__ funcs
were returning). Anyway, also make them threadsafe and smaller. The
error.c file still needs work.

79248fe 2004-03-11 05:43:23 Manuel Novoa III

Bug fix: gethostbyname2_r would fail if /etc/host was missing.
Bug fix: gethostbyname_r checked errno without first setting it to a
known value.

6994dd8 2004-03-10 07:33:56 Eric Andersen

More detail about malloc-simple

f6b6b3b 2004-03-10 06:57:12 Eric Andersen

Update todo list indicating the items remaining before 0.9.27

4f966c6 2004-03-09 05:57:21 Eric Andersen

Fix comment

39586bc 2004-03-07 04:44:35 Eric Andersen

Update with the contents of a very helpful comparison of
interfaces vs SuSv3 from heukelum at freemail dot nl

af897c3 2004-03-06 09:18:08 Eric Andersen

note that syscall on mips needs to be fixed

0d28e03 2004-02-20 12:37:58 Eric Andersen

Sigh. I switched the values...

db871a1 2004-02-20 12:09:45 Eric Andersen

Per discussion with Joakim Tjernlund, all the horrible weak declarations junk
in libdl pointing to the local 'foobar' function is garbage. This cleans all
that up and makes the code much less horrible. Now it is only really really
ugly (which is a marked improvement),

e98bb74 2004-02-20 12:05:35 Eric Andersen

Patch from Joakim Tjernlund:

white space cleanup and optimize the inner loop in dl_find_hash.