]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android-sdk/platform-bionic.git/log
android-sdk/platform-bionic.git
14 years agomerge from open-source master
The Android Open Source Project [Wed, 31 Mar 2010 21:24:25 +0000 (14:24 -0700)]
merge from open-source master

Change-Id: I950e9aca87cbb0c35099b1d53cff6378bd0f26f4

14 years agomerge from open-source master
The Android Open Source Project [Wed, 31 Mar 2010 21:19:51 +0000 (14:19 -0700)]
merge from open-source master

Change-Id: I483fedf77d978b1c6e52d73eebc14f011bb9f809

14 years agomerge from open-source master
The Android Open Source Project [Wed, 31 Mar 2010 21:15:30 +0000 (14:15 -0700)]
merge from open-source master

Change-Id: I076e0df8656fdf58c229cc9a168cd6d8e16b6d8e

14 years agoMerge "linker: fix the undefined weak symbols issue"
David Turner [Mon, 29 Mar 2010 22:49:42 +0000 (15:49 -0700)]
Merge "linker: fix the undefined weak symbols issue"

14 years agolinker: fix the undefined weak symbols issue
Min-su, Kim [Tue, 19 Jan 2010 01:05:33 +0000 (10:05 +0900)]
linker: fix the undefined weak symbols issue

14 years agoMerge changes Ibdc6e3c8,I9bcb91a2
David Turner [Mon, 29 Mar 2010 22:05:47 +0000 (15:05 -0700)]
Merge changes Ibdc6e3c8,I9bcb91a2

* changes:
  Correct generic memset implementation
  Generic memcpy should define MEMCOPY before including bcopy.c

14 years agoMerge "Atom optimized string and memory routines"
David Turner [Mon, 29 Mar 2010 21:40:05 +0000 (14:40 -0700)]
Merge "Atom optimized string and memory routines"

14 years agomerge from open-source master
The Android Open Source Project [Mon, 29 Mar 2010 18:01:59 +0000 (11:01 -0700)]
merge from open-source master

Change-Id: I96d2cd063f084fd17116bf7ee08fa7109a3c1ceb

14 years agostdlib: optimize bsearch()
André Goddard Rosa [Mon, 29 Mar 2010 00:18:56 +0000 (21:18 -0300)]
stdlib: optimize bsearch()

... by checking most probable condition first (elements do differ)

Change-Id: I424eab9c32a6d9eb82b686ca04025ec8c9097035
Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
14 years agoAtom optimized string and memory routines
Bruce Beare [Thu, 4 Mar 2010 19:03:37 +0000 (11:03 -0800)]
Atom optimized string and memory routines

Change-Id: I27b68bb28551c75c9ac84bb9730e2cd8254d8991

14 years agoAndroid hack for size_t
Bruce Beare [Wed, 10 Mar 2010 23:52:42 +0000 (15:52 -0800)]
Android hack for size_t

Change-Id: I3c967fca60f542459dc17be84da47b3b6a26242b

14 years agoFix comparison of IPv6 prefixes
Kenny Root [Thu, 25 Mar 2010 01:06:20 +0000 (18:06 -0700)]
Fix comparison of IPv6 prefixes

Typo assigned prefixlen1 twice instead of to the two different variables
for comparison and difference computation.

Change-Id: I6631b8269ca6aae264c8d7d414127b756838df96

14 years agolibc: kernel: update msm_kgsl.h
Dima Zavin [Tue, 9 Mar 2010 01:34:52 +0000 (17:34 -0800)]
libc: kernel: update msm_kgsl.h

Change-Id: I8cd5a186071892bdc2b2b29061dd6c1fd927c0f5
Signed-off-by: Dima Zavin <dima@android.com>
14 years agoFix typo that broke recursive mutexes implementation.
David 'Digit' Turner [Tue, 23 Mar 2010 12:30:55 +0000 (05:30 -0700)]
Fix typo that broke recursive mutexes implementation.

Change-Id: I832901604b487c6a50304c311b5ba135e153530d

14 years agopthread: Use private futexes by default in condition variables
David 'Digit' Turner [Sat, 20 Mar 2010 00:59:23 +0000 (17:59 -0700)]
pthread: Use private futexes by default in condition variables

Now that the system properly uses shared condvars when needed, we
can enable the use of private futexes for them too.

Change-Id: Icf8351fc0a2309f764cba45c65bc3af047720cdf

14 years agomerge from open-source master
The Android Open Source Project [Mon, 22 Mar 2010 22:55:09 +0000 (15:55 -0700)]
merge from open-source master

Change-Id: I70266ee8c520b216773f267e46c8273d2334c31d

14 years agoMerge "Fix strtod security bug."
David 'Digit' Turner [Mon, 22 Mar 2010 22:45:32 +0000 (15:45 -0700)]
Merge "Fix strtod security bug."

14 years agoUse private futexes for pthread_mutex_t.
David 'Digit' Turner [Fri, 19 Mar 2010 00:13:41 +0000 (17:13 -0700)]
Use private futexes for pthread_mutex_t.

This does not change the implementation of conditional variables
since we're waiting for other system components to properly use
pthread_condattr_init/setpshared before that.

Also remove an obsolete x86 source file.

Change-Id: Ia3e3fbac35b87a534fb04d4381c3c66b975bc8f7

14 years agoMerge "bionic: on pthread_join(), avoid extra check in case we find the thread"
David Turner [Thu, 18 Mar 2010 23:42:49 +0000 (16:42 -0700)]
Merge "bionic: on pthread_join(), avoid extra check in case we find the thread"

14 years agoMerge "bionic: ftell() returns a long, not an int"
David Turner [Thu, 18 Mar 2010 23:35:42 +0000 (16:35 -0700)]
Merge "bionic: ftell() returns a long, not an int"

14 years agoAdd pthread_condattr_init/destroy/setpshared/getpshared
David 'Digit' Turner [Thu, 18 Mar 2010 21:07:42 +0000 (14:07 -0700)]
Add pthread_condattr_init/destroy/setpshared/getpshared

Note that this does not change the implementation of conditional variables
which still use shared futexes, independent on the flags being selected.

This will be fixed in a later patch, once our system is modified to use
pthread_condattr_setpshared(attr, PTHREAD_PROCESS_SHARED) properly.

Change-Id: I935de50964cd41f97a13dbfd6626d3407b0406c3

14 years agoAdded support for dladdr()
Matt Fischer [Thu, 31 Dec 2009 18:17:40 +0000 (12:17 -0600)]
Added support for dladdr()

dladdr() is a GNU extension function, which allows the caller to retrieve
symbol information for a specified memory address.  It is useful for things
like generating backtrace information at runtime.

Change-Id: I3a1def1a6c9c666d93e1e97b7d260dfa5b9b79a9

14 years agoMerge "x86 syscall system call implementation"
David Turner [Wed, 17 Mar 2010 21:07:27 +0000 (14:07 -0700)]
Merge "x86 syscall system call implementation"

14 years agoMerge "Fix pread()/pwrite() stubs"
David Turner [Wed, 17 Mar 2010 21:00:20 +0000 (14:00 -0700)]
Merge "Fix pread()/pwrite() stubs"

14 years agoFix indentation in pthread mutex implementation.
David 'Digit' Turner [Wed, 17 Mar 2010 18:25:46 +0000 (11:25 -0700)]
Fix indentation in pthread mutex implementation.

This is preliminary work to simplify later changes to support
private futexes.

Change-Id: I06750936a93747a5e3f5a10228cbdc29e39c528c

14 years agoMerge "bionic: remove unneeded variable from chk_realloc()"
David Turner [Wed, 17 Mar 2010 00:26:44 +0000 (17:26 -0700)]
Merge "bionic: remove unneeded variable from chk_realloc()"

14 years agoMerge "bionic: equalize the <unknown> program name between ssp.c and libc_init_common.c"
David Turner [Wed, 17 Mar 2010 00:25:53 +0000 (17:25 -0700)]
Merge "bionic: equalize the <unknown> program name between ssp.c and libc_init_common.c"

14 years agoMerge "improve readability of string: fix indentation and remove trailing spaces"
David Turner [Wed, 17 Mar 2010 00:25:04 +0000 (17:25 -0700)]
Merge "improve readability of string: fix indentation and remove trailing spaces"

14 years agoMerge "optimize delete/delete[] operators by removing unneeded branch"
David Turner [Wed, 17 Mar 2010 00:21:52 +0000 (17:21 -0700)]
Merge "optimize delete/delete[] operators by removing unneeded branch"

14 years agoRevert "bionic: pthread: use private futexes by default for mutexes and condvars"
Fabrice Di Meglio [Thu, 11 Mar 2010 22:47:47 +0000 (14:47 -0800)]
Revert "bionic: pthread: use private futexes by default for mutexes and condvars"

This reverts commit ba9c6f0989ae94778ba2b9f597adc827c9dc81e8.

14 years agobionic: pthread: use private futexes by default for mutexes and condvars
David 'Digit' Turner [Thu, 11 Mar 2010 00:44:08 +0000 (16:44 -0800)]
bionic: pthread: use private futexes by default for mutexes and condvars

Private futexes are a recent kernel addition: faster futexes that cannot be
shared between processes. This patch uses them by default, unless the PROCESS_SHARED
attribute flag is used when creating a mutex and/or conditional variable.

Also introduces pthread_condattr_init/destroy/setpshared/getpshared.

Change-Id: I3a0e2116f467072b046524cb5babc00e41057a53

14 years agoMerge "Only use NEON memcpy if __ARM_NEON__ is defined"
Colin Cross [Thu, 11 Mar 2010 02:14:25 +0000 (18:14 -0800)]
Merge "Only use NEON memcpy if __ARM_NEON__ is defined"

14 years agoOnly use NEON memcpy if __ARM_NEON__ is defined
Colin Cross [Wed, 10 Mar 2010 00:23:51 +0000 (16:23 -0800)]
Only use NEON memcpy if __ARM_NEON__ is defined

Change-Id: I32e6b9385d46efeec15dee8e395a82eef24ba3ea

14 years agoFix strtod security bug.
David 'Digit' Turner [Thu, 4 Mar 2010 19:51:42 +0000 (11:51 -0800)]
Fix strtod security bug.

To avoid introducing NULL checks everytime a Bigint computation
is performed, introduce a special value (BIGINT_INVALID) and only
check for it when absolutely needed (which means when the code
needs to access the Bigint's internal structure fields).

Change-Id: Ie3954523b0985b6a8cb62340802d8dcf63cbf16f

14 years agoMerge "Fix spurious DNS lookups in the C library."
David 'Digit' Turner [Tue, 9 Mar 2010 19:13:35 +0000 (11:13 -0800)]
Merge "Fix spurious DNS lookups in the C library."

14 years agoAdd an empty CleanSpec.mk
Jean-Baptiste Queru [Tue, 9 Mar 2010 02:04:02 +0000 (18:04 -0800)]
Add an empty CleanSpec.mk

Change-Id: Id233ea6f854253776f57e64196e262c5a057e654

14 years agoFix spurious DNS lookups in the C library.
David 'Digit' Turner [Mon, 8 Mar 2010 23:13:04 +0000 (15:13 -0800)]
Fix spurious DNS lookups in the C library.

The problem was that the 'defdname' field of res_state structure
was not properly initialized in __res_vinit(). This field is used
to store the default domain name, which is normally build from
calling gethostname() (see line 549 of res_init.c).

Unfortunately, in the typical Android case, gethostname() returns
an error (the hostname is configured) and a random stack string is
used later to build the DNS search list (see lines 556+ in res_init.c)

For the sake of illustration, let's say the search list is set to
a random value like 'xWLK'.

The end result is that when trying to result an unknown domain name
(e.g. 'www.ptn'), the query fails then the resolver tries to make a
new query with the DNS search list path(s) appended (e.g. 'www.ptn.xWLK').

The patch simply initializes 'defdname' to an empty string to avoid
this when the net.dns.search system property is not set.

Also contains whitespace/formatting fixes

14 years agoFix timezone management in the C library
David 'Digit' Turner [Fri, 5 Mar 2010 22:17:35 +0000 (14:17 -0800)]
Fix timezone management in the C library

Define 'timezone' and 'daylight' global variables that are already
defined in <time.h>

Properly update the 'tm_gmtoff' field in 'struct tm' values.

14 years agox86 syscall system call implementation
Bruce Beare [Thu, 4 Mar 2010 18:29:38 +0000 (10:29 -0800)]
x86 syscall system call implementation

14 years agoMerge "QUalcomm H.264 encoder support."
Gloria Wang [Thu, 4 Mar 2010 02:02:33 +0000 (18:02 -0800)]
Merge "QUalcomm H.264 encoder support."

14 years agoQUalcomm H.264 encoder support.
Gloria Wang [Thu, 4 Mar 2010 00:26:26 +0000 (16:26 -0800)]
QUalcomm H.264 encoder support.

14 years agoam 71fbeecd: (-s ours) am fd5b1bb8: Add stdlib functions mbstowcs() and wcstombs...
Dan Bornstein [Wed, 3 Mar 2010 19:07:09 +0000 (11:07 -0800)]
am 71fbeecd: (-s ours) am fd5b1bb8: Add stdlib functions mbstowcs() and wcstombs(). DO NOT MERGE.

Merge commit '71fbeecdbd7bcf2282e4b032ceb2f6ead13dc9cb'

* commit '71fbeecdbd7bcf2282e4b032ceb2f6ead13dc9cb':
  Add stdlib functions mbstowcs() and wcstombs(). DO NOT MERGE.

14 years agoam fd5b1bb8: Add stdlib functions mbstowcs() and wcstombs(). DO NOT MERGE.
Dan Bornstein [Wed, 3 Mar 2010 18:51:34 +0000 (10:51 -0800)]
am fd5b1bb8: Add stdlib functions mbstowcs() and wcstombs(). DO NOT MERGE.

Merge commit 'fd5b1bb85d0a971fd8469112a157380c4d3a146f' into eclair-mr2-plus-aosp

* commit 'fd5b1bb85d0a971fd8469112a157380c4d3a146f':
  Add stdlib functions mbstowcs() and wcstombs(). DO NOT MERGE.

14 years agoAdd stdlib functions mbstowcs() and wcstombs(). DO NOT MERGE.
Dan Bornstein [Tue, 10 Nov 2009 20:15:33 +0000 (12:15 -0800)]
Add stdlib functions mbstowcs() and wcstombs(). DO NOT MERGE.

As with the other wchar functions in Bionic, these are really
minimally functional stubs.

14 years agobonic: libc: cpuacct support for setuid functions
Mike Chan [Tue, 2 Mar 2010 18:55:58 +0000 (10:55 -0800)]
bonic: libc: cpuacct support for setuid functions

Any of the setuid functions now updates /acct/uid/ with its own tid
before changing users. This is so we can properly account for cpu time
per uid.

Change-Id: I34186cf4d5228cac8439e582a9e26c01ef3011e4
Signed-off-by: Mike Chan <mike@android.com>
14 years agolibc: kernel: update pmem header with cache flush ioctl
Dima Zavin [Wed, 3 Mar 2010 00:10:21 +0000 (16:10 -0800)]
libc: kernel: update pmem header with cache flush ioctl

Change-Id: Ied08844035d4526175dcdcb7f219f9f90c4679d2
Signed-off-by: Dima Zavin <dima@android.com>
14 years agoadd sigaltstack syscall
Andrei Popescu [Thu, 25 Feb 2010 13:27:46 +0000 (13:27 +0000)]
add sigaltstack syscall

14 years agoFix pthread_sigmask() to return correct error values.
David 'Digit' Turner [Mon, 1 Mar 2010 19:30:40 +0000 (11:30 -0800)]
Fix pthread_sigmask() to return correct error values.

Before that, it returned -1 on error and set errno (not Posix)
After the patch, it returns the error code and leaves errno untouched.

14 years agoMerge "Implement support for RFC 3484 (address selection/sorting) in bionic. (The...
David Turner [Wed, 24 Feb 2010 18:04:09 +0000 (10:04 -0800)]
Merge "Implement support for RFC 3484 (address selection/sorting) in bionic.  (The Java changes required not to mess up the ordering from bionic will arrive in a later commit.) In particular, this will give us more correct behavior when on a 6to4 network, in that IPv4 will usually be preferred over 6to4."

14 years agoImplement support for RFC 3484 (address selection/sorting) in bionic. (The
Steinar H. Gunderson [Thu, 11 Feb 2010 14:44:55 +0000 (15:44 +0100)]
Implement support for RFC 3484 (address selection/sorting) in bionic.  (The
Java changes required not to mess up the ordering from bionic will arrive in a
later commit.) In particular, this will give us more correct behavior when on a
6to4 network, in that IPv4 will usually be preferred over 6to4.

Most of RFC 3484 is implemented -- what's not is rule 3 (avoid deprecated
addresses), 4 (prefer home addresses) and 7 (prefer native transport) as they
require low-level access to the kernel routing table via netlink. (glibc also
started out this way, and these rules are primarily useful in pretty obscure
circumstances, so we should be fine for the time being.)

Also, rule 9 (use longest matching prefix) has been modified so it does not try
to sort IPv4 addresses; given current IPv4 addressing practice these rules are
pretty much meaningless. Finally, I've added support for Teredo as a separate
label, with slightly lower preference than 6to4. (Vista puts the preference
below IPv4 by default. glibc puts the preference together with non-tunneled
IPv6.)

Note that this patch removes support for the "sortlist" directive in
resolv.conf; I've never seen it in actual use, it's irrelevant for Android
(since we don't use resolv.conf anyway), and it's not clear how it would be
implemented alongside RFC 3484.

14 years agobionic: syscalls: Add ioprio_set/ioprio_get syscall wrappers
San Mehat [Tue, 23 Feb 2010 23:55:29 +0000 (15:55 -0800)]
bionic: syscalls: Add ioprio_set/ioprio_get syscall wrappers

Signed-off-by: San Mehat <san@google.com>
14 years agoMerge "Merge memory checking functionality from sandbox"
Vladimir Chtchetkine [Wed, 17 Feb 2010 21:43:15 +0000 (13:43 -0800)]
Merge "Merge memory checking functionality from sandbox"

14 years agoMerge memory checking functionality from sandbox
Vladimir Chtchetkine [Fri, 12 Feb 2010 16:59:58 +0000 (08:59 -0800)]
Merge memory checking functionality from sandbox

Change-Id: I304c789a752c9f4af4944ca14b9bf1e7644da15a

14 years agoFix pread()/pwrite() stubs
Matt Fischer [Fri, 21 Aug 2009 20:45:17 +0000 (15:45 -0500)]
Fix pread()/pwrite() stubs

On ARM EABI, 64-bit function parameters must be aligned
to an even/odd register pair.  The weird way these stubs
were written (using separate lo/hi parameters) prevented
this alignment from being enforced by the compiler.

14 years agoMerge "Changed __get_h_errno linkage to "C"."
Niko Catania [Fri, 12 Feb 2010 21:46:31 +0000 (13:46 -0800)]
Merge "Changed __get_h_errno linkage to "C"."

14 years agoFix sem_post() behaviour to wake up multiple waiting threads.
David 'Digit' Turner [Fri, 12 Feb 2010 20:50:32 +0000 (12:50 -0800)]
Fix sem_post() behaviour to wake up multiple waiting threads.

14 years agoFix sem_trywait() implementation + update changelog.
David 'Digit' Turner [Fri, 12 Feb 2010 20:18:37 +0000 (12:18 -0800)]
Fix sem_trywait() implementation + update changelog.

14 years agoChanged __get_h_errno linkage to "C".
Nicolas Catania [Fri, 12 Feb 2010 19:33:53 +0000 (11:33 -0800)]
Changed __get_h_errno linkage to "C".

Bug:2441631

14 years agoFix android_id_from_name to accept "app_0" as a valid ID.
David 'Digit' Turner [Fri, 12 Feb 2010 19:35:38 +0000 (11:35 -0800)]
Fix android_id_from_name to accept "app_0" as a valid ID.

This fixes getpwnam and getpwgrp which returned NULL for "app_0".
"app_0" corresponds to uid/gid 10000 and is perfectly valid.

14 years agoFix debug output in the dynamic linker.
David 'Digit' Turner [Wed, 20 Jan 2010 20:36:51 +0000 (12:36 -0800)]
Fix debug output in the dynamic linker.

This provides a mini-printf implementation that reduces the
size of the dynamic linker by 25 KB, by preventing the drag of
formatting-related routines from the C library.

Also allow traces to be sent to the log, instead of stdout.

NOTE: You now need to modify Android.mk to enable/disable debug
      output.

14 years agobionic/linker: rename ba_prelink to ba_nonprelink
Iliyan Malchev [Wed, 10 Feb 2010 23:19:37 +0000 (15:19 -0800)]
bionic/linker: rename ba_prelink to ba_nonprelink

-- fixes b/2432550
-- ba_prelink is used to manage non-prelinked libraries, hence ba_nonprelink is
   a more appropriate name for it

Signed-off-by: Iliyan Malchev <malchev@google.com>
14 years agoMerge "Fix <sys/epoll.h> and <sys/system_properties.h> to include proper C++ inclusio...
David Turner [Tue, 9 Feb 2010 22:50:57 +0000 (14:50 -0800)]
Merge "Fix <sys/epoll.h> and <sys/system_properties.h> to include proper C++ inclusion guards"

14 years agoFix <sys/epoll.h> and <sys/system_properties.h> to include proper C++ inclusion guards
David 'Digit' Turner [Tue, 9 Feb 2010 22:05:43 +0000 (14:05 -0800)]
Fix <sys/epoll.h> and <sys/system_properties.h> to include proper C++ inclusion guards

14 years agoam 58060c50: am ee424e23: bionic: update processed kernel header a1026.h
Iliyan Malchev [Tue, 9 Feb 2010 17:32:25 +0000 (09:32 -0800)]
am 58060c50: am ee424e23: bionic: update processed kernel header a1026.h

Merge commit '58060c50bc4228a7d0253338cae0437211759959'

* commit '58060c50bc4228a7d0253338cae0437211759959':
  bionic: update processed kernel header a1026.h

14 years agoam ee424e23: bionic: update processed kernel header a1026.h
Iliyan Malchev [Tue, 9 Feb 2010 17:25:57 +0000 (09:25 -0800)]
am ee424e23: bionic: update processed kernel header a1026.h

Merge commit 'ee424e23c10c051ee4760177c85f6003ff20108c' into eclair-plus-aosp

* commit 'ee424e23c10c051ee4760177c85f6003ff20108c':
  bionic: update processed kernel header a1026.h

14 years agobionic: update processed kernel header a1026.h
Iliyan Malchev [Mon, 8 Feb 2010 23:57:09 +0000 (15:57 -0800)]
bionic: update processed kernel header a1026.h

Signed-off-by: Iliyan Malchev <malchev@google.com>
14 years agoCorrect generic memset implementation
Chris Dearman [Fri, 5 Feb 2010 23:13:55 +0000 (15:13 -0800)]
Correct generic memset implementation

Signed-off-by: Chris Dearman <chris@mips.com>
14 years agoGeneric memcpy should define MEMCOPY before including bcopy.c
Chris Dearman [Fri, 5 Feb 2010 23:13:55 +0000 (15:13 -0800)]
Generic memcpy should define MEMCOPY before including bcopy.c

Signed-off-by: Chris Dearman <chris@mips.com>
14 years agoam 1db87472: am ba8bfedd: reconcile main tree with open-source eclair
The Android Open Source Project [Fri, 5 Feb 2010 22:14:46 +0000 (14:14 -0800)]
am 1db87472: am ba8bfedd: reconcile main tree with open-source eclair

Merge commit '1db874720a58ff7e3684116d59ad08bc73db26d9'

* commit '1db874720a58ff7e3684116d59ad08bc73db26d9':
  android-2.1_r1 snapshot

14 years agobionic: equalize the <unknown> program name between ssp.c and libc_init_common.c
André Goddard Rosa [Fri, 5 Feb 2010 19:48:07 +0000 (17:48 -0200)]
bionic: equalize the <unknown> program name between ssp.c and libc_init_common.c

... for the consistency sake.

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
14 years agobionic: remove unneeded variable from chk_realloc()
André Goddard Rosa [Fri, 5 Feb 2010 18:32:56 +0000 (16:32 -0200)]
bionic: remove unneeded variable from chk_realloc()

... and simplify the generated code.

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
14 years agobionic: on pthread_join(), avoid extra check in case we find the thread
André Goddard Rosa [Fri, 5 Feb 2010 18:21:07 +0000 (16:21 -0200)]
bionic: on pthread_join(), avoid extra check in case we find the thread

... by using similar logic as used in pthread_detach().

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
14 years agobionic: ftell() returns a long, not an int
André Goddard Rosa [Fri, 5 Feb 2010 18:05:52 +0000 (16:05 -0200)]
bionic: ftell() returns a long, not an int

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
14 years agoam ba8bfedd: reconcile main tree with open-source eclair
The Android Open Source Project [Fri, 5 Feb 2010 16:44:18 +0000 (08:44 -0800)]
am ba8bfedd: reconcile main tree with open-source eclair

Merge commit 'ba8bfedd04824eea944236ffc885f866c5e9c651' into eclair-plus-aosp

* commit 'ba8bfedd04824eea944236ffc885f866c5e9c651':
  android-2.1_r1 snapshot

14 years agoreconcile main tree with open-source eclair
The Android Open Source Project [Fri, 5 Feb 2010 16:09:31 +0000 (08:09 -0800)]
reconcile main tree with open-source eclair

14 years agoam c0472409: am d0996bb4: bionic: update processed kernel header tpa2018d1.h
Iliyan Malchev [Wed, 3 Feb 2010 00:22:10 +0000 (16:22 -0800)]
am c0472409: am d0996bb4: bionic: update processed kernel header tpa2018d1.h

Merge commit 'c0472409d14eebf797df962dd78fc31afbc4bd07'

* commit 'c0472409d14eebf797df962dd78fc31afbc4bd07':
  bionic: update processed kernel header tpa2018d1.h

14 years agoam 7ec87a19: am 276313ec: bionic: add processed kernel headers a1026.h and tpa2018d1.h
Iliyan Malchev [Wed, 3 Feb 2010 00:22:06 +0000 (16:22 -0800)]
am 7ec87a19: am 276313ec: bionic: add processed kernel headers a1026.h and tpa2018d1.h

Merge commit '7ec87a1926250d3c1f74193bf36417707e691e10'

* commit '7ec87a1926250d3c1f74193bf36417707e691e10':
  bionic: add processed kernel headers a1026.h and tpa2018d1.h

14 years agoam d0996bb4: bionic: update processed kernel header tpa2018d1.h
Iliyan Malchev [Tue, 2 Feb 2010 22:21:05 +0000 (14:21 -0800)]
am d0996bb4: bionic: update processed kernel header tpa2018d1.h

Merge commit 'd0996bb4cd6b6d0fa7c643a809f01e33adc2638d' into eclair-plus-aosp

* commit 'd0996bb4cd6b6d0fa7c643a809f01e33adc2638d':
  bionic: update processed kernel header tpa2018d1.h

14 years agoam 276313ec: bionic: add processed kernel headers a1026.h and tpa2018d1.h
Iliyan Malchev [Tue, 2 Feb 2010 22:21:02 +0000 (14:21 -0800)]
am 276313ec: bionic: add processed kernel headers a1026.h and tpa2018d1.h

Merge commit '276313ec18c18a07e867dffe568a377583cfd905' into eclair-plus-aosp

* commit '276313ec18c18a07e867dffe568a377583cfd905':
  bionic: add processed kernel headers a1026.h and tpa2018d1.h

14 years agobionic: update processed kernel header tpa2018d1.h
Iliyan Malchev [Tue, 2 Feb 2010 21:42:55 +0000 (13:42 -0800)]
bionic: update processed kernel header tpa2018d1.h

Signed-off-by: Iliyan Malchev <malchev@google.com>
14 years agobionic: add processed kernel headers a1026.h and tpa2018d1.h
Iliyan Malchev [Tue, 2 Feb 2010 19:56:26 +0000 (11:56 -0800)]
bionic: add processed kernel headers a1026.h and tpa2018d1.h

Signed-off-by: Iliyan Malchev <malchev@google.com>
14 years agobionic: update processed kernel header msm_camera.h
Iliyan Malchev [Mon, 1 Feb 2010 01:22:25 +0000 (17:22 -0800)]
bionic: update processed kernel header msm_camera.h

Signed-off-by: Iliyan Malchev <malchev@google.com>
14 years agoimprove readability of string: fix indentation and remove trailing spaces
André Goddard Rosa [Sun, 31 Jan 2010 00:28:49 +0000 (22:28 -0200)]
improve readability of string: fix indentation and remove trailing spaces

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
14 years agooptimize delete/delete[] operators by removing unneeded branch
André Goddard Rosa [Sun, 31 Jan 2010 00:26:30 +0000 (22:26 -0200)]
optimize delete/delete[] operators by removing unneeded branch

Remove redundant not NULL check already done in free().

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
14 years agoreconcile android-2.1_r1 snapshot
The Android Open Source Project [Fri, 29 Jan 2010 22:07:31 +0000 (14:07 -0800)]
reconcile android-2.1_r1 snapshot

14 years agoMerge "Implement clone() C library function properly."
David Turner [Mon, 25 Jan 2010 22:30:17 +0000 (14:30 -0800)]
Merge "Implement clone() C library function properly."

14 years agoImplement clone() C library function properly.
David 'Digit' Turner [Sat, 23 Jan 2010 02:59:05 +0000 (18:59 -0800)]
Implement clone() C library function properly.

Only provide an implementation for ARM at the moment, since
it requires specific assembly fragments (the standard syscall
stubs cannot be used because the child returns in a different
stack).

14 years agoFix typo in a comment.
Doug Kwan [Mon, 25 Jan 2010 19:09:31 +0000 (11:09 -0800)]
Fix typo in a comment.

14 years agoAlign TEXT section to 4K boundary so that we can use both ld and gold.
Doug Kwan [Mon, 25 Jan 2010 18:24:50 +0000 (10:24 -0800)]
Align TEXT section to 4K boundary so that we can use both ld and gold.

14 years agoAdd Bionic Changelog in libc/docs/CHANGES.TXT
David 'Digit' Turner [Thu, 21 Jan 2010 23:03:26 +0000 (15:03 -0800)]
Add Bionic Changelog in libc/docs/CHANGES.TXT

14 years agoAdd implementation of fdprintf, clearenv, and stubs for ttyname_r, *usershell
Colin Cross [Thu, 14 Jan 2010 01:48:34 +0000 (17:48 -0800)]
Add implementation of fdprintf, clearenv, and stubs for ttyname_r, *usershell

Change-Id: I5fe7e8b6ee5edbb49e707c3b6737a58563781fa3

14 years agoAdd killpg function
Colin Cross [Thu, 14 Jan 2010 00:39:26 +0000 (16:39 -0800)]
Add killpg function

Change-Id: I9bc347d264fe38faf2d0f9935d2ebb43a353196e

14 years agoAdd fts, err, and sys/queue for grep
Colin Cross [Thu, 14 Jan 2010 05:19:52 +0000 (21:19 -0800)]
Add fts, err, and sys/queue for grep

Change-Id: Id47514a1812d828e95efa2fab0e9c15c5b682b58

14 years agomntent.h requires stdio.h
Colin Cross [Thu, 14 Jan 2010 02:31:01 +0000 (18:31 -0800)]
mntent.h requires stdio.h

Change-Id: If69f64cf088dedb19602bf47627d03400abb9095

14 years agoAdd definition of rlim_t
Colin Cross [Thu, 14 Jan 2010 00:28:13 +0000 (16:28 -0800)]
Add definition of rlim_t

Change-Id: Ie8c2451360cbcce9fc1587528a95aca09a03d0de

14 years agoImport change from ctype.h revision 1.20 from openbsd
Colin Cross [Wed, 13 Jan 2010 22:38:20 +0000 (14:38 -0800)]
Import change from ctype.h revision 1.20 from openbsd

Fixes builds with gcc >= 4.3 with -std=gnu99

Change-Id: I8729b7f4237fd7a99a82b2fe60573a7afe66b435

14 years agoImport include/arpa/telnet.h from BSD
Colin Cross [Wed, 13 Jan 2010 03:00:00 +0000 (19:00 -0800)]
Import include/arpa/telnet.h from BSD

Change-Id: I684251bfb8ef04f0706866ea55dceebcd2a5b0e1

14 years agoImport regex from OpenBSD
Colin Cross [Wed, 13 Jan 2010 02:59:25 +0000 (18:59 -0800)]
Import regex from OpenBSD

Change-Id: I7ad7d907ef65e4e345f94777d730813b1270a612

14 years agoMerge "Use correct TLS codepath for linker"
Colin Cross [Fri, 15 Jan 2010 22:07:40 +0000 (14:07 -0800)]
Merge "Use correct TLS codepath for linker"

14 years agoUse correct TLS codepath for linker
Gary King [Tue, 29 Sep 2009 23:12:31 +0000 (16:12 -0700)]
Use correct TLS codepath for linker

Replicate ARM libc build's HAVE_ARM_TLS_REGISTER preprocessor definition
logic, to ensure that the runtime linker uses the correct codepath for
accessing the TLS address