• 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
a975204 2002-07-23 02:11:58 Eric Andersen

Add some syscalls which I moved out of syscalls.c
-Erik

72677cc 2002-07-23 02:10:30 Eric Andersen

Rework syscall handling. Rewrite syscall handlers for x86 and ARM.
Prepare to kill the UNIFIED_SYSCALL option and instead have it be
a per arch thing that is either enabled or not for that arch.
-Erik

980e785 2002-07-19 17:09:17 Eric Andersen

Fix spelling

3bbbba1 2002-07-19 13:27:30 Miles Bader

Doc fix.

2461920 2002-07-19 13:26:41 Miles Bader

Rename mutex stuff to use heap-specific names.
Doc fix.

35d29fc 2002-07-19 00:00:07 Eric Andersen

Miles Bader implemented a new mmap based malloc which is much
smarter than the old "malloc-simple", and actually works, unlike
the old "malloc". So kill the old "malloc-simple" and the old
"malloc" and replace them with Miles' new malloc implementation.
Update Config files to match. Thanks Miles!

3b1e824 2002-07-17 00:02:01 Eric Andersen

Fix from "Gerhard Uttenthaler" <uttenthaler@ems-wuensche.com> so
that cfsetspeed would actually be compiled in.

aa57f51 2002-07-16 21:34:42 Eric Andersen

We don't need the debug versions

8ae4f3e 2002-07-16 21:33:48 Eric Andersen

__morecore need not be a function pointer

a695475 2002-07-16 21:27:00 Eric Andersen

Disable debug stuff by default

6734179 2002-07-16 21:20:40 Eric Andersen

Odd. Got a copy of junk in here.

30b3234 2002-07-16 19:56:19 Eric Andersen

Do not assume NULL termination on the ut_id field. Thanks
to mac12@po.cwru.edu for spotting this one.

c96a844 2002-07-16 01:26:52 Manuel Novoa III

Clean up CLK_TCK situation. clock() and sysconf() now use an
arch-specific constant value defined in bits/uClibc_clk_tck.h.
Default is 100 (common/bits) but alpha uses 1024 following glibc.
Override per arch as necessary.

8431a6f 2002-07-15 21:16:05 Eric Andersen

stupid cut-n-paste bug
-Erik

aa65f3e 2002-07-15 19:15:07 Eric Andersen

Patch for a silly bug from David Blythe

8d12b9f 2002-07-15 19:03:12 Eric Andersen

Silence a couple of silly warnings
-Erik

17c362c 2002-07-15 18:59:46 Eric Andersen

Rework pread and pwrite support so it should actually work.
Add support for pread64 and pwrite64. Fixup llseek a bit.
-Erik

6d1ef1d 2002-07-14 16:01:41 Eric Andersen

Add both pthread_mutexattr_setpshared() and
pthread_mutexattr_getpshared(), which were
missing
-Erik

252f321 2002-07-14 15:52:23 Eric Andersen

Add missing pthread_condattr_getpshared and pthread_condattr_setpshared
-Erik

45f83ee 2002-07-11 23:06:06 Eric Andersen

Kill this stale file

a009334 2002-07-11 19:14:26 Eric Andersen

Note updated toolchains are available
-Erik

f581d50 2002-07-11 16:15:29 Miles Bader

Grumble...

526c1f3 2002-07-10 14:40:19 Eric Andersen

The mips config files were broken, and failed to define NM
for some reason...

56e9401 2002-07-10 13:38:37 Eric Andersen

Tobias Anderberg <tobias.anderberg@axis.com> noticed that
we were opening the socket() as SOCK_STREAM instead of
using SOCK_DGRAM like we should have done.

64bfb23 2002-07-10 13:32:03 Eric Andersen

Per bug report from Ronald Wahl <rwa@peppercon.com>:
...inet_pton breaks since tolower is implemented as
a macro and its argument is evaluated more than once:

while ((ch = tolower (*src++)) != '\0') {

So I fixed it by just undefining tolower() so we use the
function version, not the macro.
-Erik

fbede14 2002-07-10 13:15:31 Eric Andersen

Add missing stropts.h

6c00b5d 2002-07-10 13:09:18 Eric Andersen

Patch from Ronald Wahl <rwa@peppercon.com> to fix a memory leak

8b1bfb5 2002-07-09 07:02:34 Eric Andersen

Fix a typo

227ef69 2002-07-09 02:57:11 Manuel Novoa III

Remove obsolete code.

d8188f4 2002-07-09 02:56:36 Manuel Novoa III

Fix a preprocessor buglet. Redo sys_siglist/strsignal/psignal.