• 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
d764343 2002-08-19 19:07:41 Eric Andersen

Work from Stefan Allius which allows superH to use the common
method for building crti.o and crtn.o

3358b76 2002-08-19 19:05:03 Eric Andersen

Based on work by Stefan Allius, arrange for early initialization of
pthread stuff. Also, don't bother building libthread_db unless we
are debugging.
-Erik

c8b3cca 2002-08-19 19:01:33 Eric Andersen

Open a lib that is not so closely coupled with gdb

0fd2aad 2002-08-19 17:56:59 Eric Andersen

Be prepared to call __pthread_initialize_minimal

14a41e5 2002-08-19 17:49:22 Miles Bader

(CSRC): Make contents source files, not object files.

6c6a72c 2002-08-19 17:48:08 Miles Bader

(CSRC): Add `memalign.c'.

3fa4f2f 2002-08-19 17:46:34 Miles Bader

Initial checkin.

b348111 2002-08-19 17:45:22 Miles Bader

(realloc): Follow new arg conventions of MALLOC_SET_SIZE.

bdc62ea 2002-08-19 17:44:11 Miles Bader

(malloc): Use MALLOC_SETUP.

5a0af72 2002-08-19 17:43:30 Miles Bader

(MALLOC_SETUP): New macro.
(MALLOC_SET_SIZE): Take the base-address of the block, not the user-address.
(MALLOC_ADDR): Macro removed.

175f6f6 2002-08-19 06:08:34 Eric Andersen

Directly use kernel types for uid_t, gid_t, and dev_t to avoid the
need to translate these entities...
-Erik

160212f 2002-08-19 03:50:52 Eric Andersen

Yet more rework to make __getgrent and the functions that use it
reentrant...
-Erik

ed43cba 2002-08-18 09:24:25 Manuel Novoa III

Fix broken locking so that at least the Python 2.2.1 grp test doesn't
lock up. This really needs to be looked at, as I don't think this
needs to be reentrant. In any case, several routines call the
__getgrent internal routine and it uses static vars for data. If this
stuff is really supposed to be threadsafe, then __getgrent probably
needs fixing.

43b3eaf 2002-08-18 09:21:45 Manuel Novoa III

Remove recursive lock/unlock for a non-recursive mutex.

a7cce5b 2002-08-18 06:28:29 Manuel Novoa III

Fixed __read_etc_hosts_r to return alias list and modified buffer
allocation accordingly. This fixes the segfault in the Python 2.2.1
socket test.

0e09a01 2002-08-17 09:35:15 Manuel Novoa III

Fix two problems with printf that showed up in the python 2.2.1 tests;
One involving %o and one involving %f.

dd51818 2002-08-17 03:35:07 Manuel Novoa III

Disable macro implementations. Somehow I missed the following from the
ANSI/ISO C99 std...

A library macro that masks a function declaration expands to an
expression that evaluates each of its arguments once (and only once).
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Arguments that have side effects evaluate the same way whether the
expression executes the macro expansion or calls the function. Macros
for the functions getc and putc are explicit exceptions to this rule.
Their stream arguments can be evaluated more than once. Avoid argument
expressions that have side effects with these macros.

This will be reworked before the next release. And yes, I feel stupid.

e037958 2002-08-16 23:17:46 Eric Andersen

Cleanup exit a bit, from Ronald Wahl

f4cb037 2002-08-16 18:02:40 Miles Bader

whitespace

7a0a0df 2002-08-16 17:56:23 Miles Bader

Remove __res_state function.

d1d872e 2002-08-16 17:53:15 Miles Bader

Make INCLUDE_FULL_RPC default to !HAVE_SHARED.

2a272e8 2002-08-16 17:02:17 Eric Andersen

Demonstrate that dlopen() RTLD_NOW is currently broken.
-Erik

9f8c3d2 2002-08-16 15:30:30 Miles Bader

Remove thread-specific stuff entirely.

6a45dea 2002-08-16 14:45:24 Miles Bader

(_res): Define as a macro if __UCLIBC_HAS_THREADS__ is defined,
regardless of _LIBC.

8af1b6d 2002-08-16 14:37:11 Miles Bader

(h_errno): Only define as a macro if __UCLIBC_HAS_THREADS__ is defined.
(__set_h_errno): Just assign to `h_errno' (which will be expanded to the
thread-friendly version when appropriate).

2d73ea9 2002-08-16 14:02:02 Miles Bader

(errno): Only define as a macro if __UCLIBC_HAS_THREADS__ is defined.
(__set_errno): Just assign to `errno' (which will be expanded to the
thread-friendly version when appropriate).

f106775 2002-08-16 13:49:08 Eric Andersen

Replace all instances of _LIBC_REENTRANT with __UCLIBC_HAS_THREADS__
-Erik

7166f6c 2002-08-16 13:36:44 Eric Andersen

Remove h8300 special case

71a8fc3 2002-08-16 11:23:52 Miles Bader

(headers): Remove special case for v850, now that the general case
works correctly for non-MMU systems without a `nommu' suffix.
Fixup indentation a bit.

348d65d 2002-08-16 02:04:09 Manuel Novoa III

Fix erroneous grouping.