• 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
91f53c1 2002-08-07 19:10:14 Eric Andersen

Updates to the working apps list from Kagan Kongar. Thanks!

9d4e5cf 2002-08-07 18:07:10 Eric Andersen

Apply integer overflow security fix for "CERT Advisory CA-2002-25 Integer
Overflow In XDR Library" http://www.cert.org/advisories/CA-2002-25.html
Patch from Solar Designer <solar@openwall.com>.

9fe81b7 2002-08-07 17:42:33 Eric Andersen

Message catalog support for internationalization is not currently
provided by uClibc, and here I have added macros to disable it.
-Erik

698d2c6 2002-08-07 16:57:49 Eric Andersen

Per suggestion from Miles Bader, move calloc.c to libc/stdlib.
Also, Manuel notices that I forgot to check for when nmemb=0,
which would result in a segfault, so fix that case as well.
-Erik

99eb56d 2002-08-06 23:50:14 Eric Andersen

When symbols are missing, its supposed to be an error...
-Erik

7711a9b 2002-08-06 23:49:17 Eric Andersen

Several pthreads updates. Enable linuxthreads_db. Several fixes
related to thread local storage.
-Erik

0a2d7c0 2002-08-06 23:47:12 Eric Andersen

Fixup the last missing pieces of thread locking
-Erik

17a1a69 2002-08-06 23:46:14 Eric Andersen

Rework RPC code once again. By default, only enable the
stuff needed for NFS mounts, rsh, and similar.
-Erik

78c8653 2002-08-06 22:47:58 Manuel Novoa III

Enable getpt prototype.

14c2c51 2002-08-06 14:27:13 Manuel Novoa III

Changed fflush() behavior to no-op for r/w streams in read-mode.
This falls under undefined behavior wrt ANSI/ISO C99, but
SUSv3 seems to treat it as a no-op and it occurs in some apps.
Fixed a problem with _stdio_fwrite() not checking for underlying
write() failures.
Fixed both _stdio_fwrite() and _stdio_fread() to make sure that
the putc and getc macros were disabled if the stream was in
and error state.

The above changes should take care of a problem initially reported
by "Steven J. Hill" <sjhill@realitydiluted.com>.

64f78ef 2002-08-06 12:28:45 Eric Andersen

Unify calloc (its the same thing regardless of the underlying
malloc implementation). Fix problem reported to bugtraq about
problems with integer overflow that can occur during the
computation of the memory region size by calloc (and similar
functions) which could result in a subsequent buffer overflow.
-Erik

142d965 2002-08-06 09:45:58 Eric Andersen

Just in case, crash if somehow `exit' returns anyways
-Erik

bd3fadc 2002-08-06 07:33:03 Eric Andersen

remove BUILDTIME since it is not used

9e3364a 2002-08-04 03:49:09 Manuel Novoa III

A couple of little cleanups I forgot to check in.

d4db0bd 2002-08-03 19:58:12 Eric Andersen

When DODEBUG and HAS_WCHAR were enabled and HAS_LOCALE was disabled,
wchar.c wouldn't compile:
wchar.c: In function `__mbsnrtowcs':
wchar.c:631: `__ctype_encoding_7_bit' undeclared (first use in this function)
This fixes it by keeping the locale specific asserts hidden when not relevant.
-Erik

b172334 2002-08-01 16:46:55 Miles Bader

Use MALLOC_REALLOC_MIN_FREE_SIZE.

5d88651 2002-08-01 16:46:20 Miles Bader

(MALLOC_REALLOC_MIN_FREE_SIZE): New macro.
Enable debugging if MALLOC_DEBUGGING is defined.

3b836d6 2002-08-01 16:45:47 Miles Bader

(HEAP_MIN_SIZE): New macro.
(HEAP_MIN_FREE_AREA_SIZE): Increase size.
Enable debugging if HEAP_DEBUGGING is defined.

205e2b7 2002-08-01 10:31:17 Eric Andersen

Joseph Chiu <josephc@idealab.com> found an off-by-one bug. oops!

3d909b2 2002-07-31 18:44:09 Miles Bader

In the allocate-and-copy case, don't include the malloc header in our
size calculations.

34067b3 2002-07-31 17:23:03 Eric Andersen

Sigh. A bit more cleanup.

dfa6a53 2002-07-31 16:13:19 Miles Bader

Update debugging printfs.

b93d7f3 2002-07-31 13:38:58 Eric Andersen

Per discussion on the mailing list, simply vfork -> fork mapping to only apply
iff we do not have vfork available, which is simpler and more reasonable.
-Erik

4ea7a11 2002-07-31 13:31:33 Eric Andersen

More i960 support

a41983b 2002-07-31 13:29:18 Eric Andersen

Patch from Martin Proulx <mproulx@okiok.com> to fix i960
create_module() support.

38ff147 2002-07-31 13:20:04 Eric Andersen

Patch from Alexander Pevzner <pzz@pzz.msk.ru> to fixup things when invoked as
the C++ compiler to to automagically add include/g++ into the include search
path, and automagically add -lstdc++ and -lm into the set of automatically
linked libraries.

c3e08b5 2002-07-31 11:45:47 Eric Andersen

You fool foolish. Goodbye level 2.

2cf23b8 2002-07-31 11:34:49 Eric Andersen

Always build utils by default
-Erik

73900d9 2002-07-31 11:10:52 Miles Bader

Account for MALLOC_HEADER_SIZE when calculating new size.

def04f2 2002-07-31 11:09:57 Miles Bader

Use MALLOC_HEADER_SIZE.