platform_bionic/libc
Fred Fettinger 25f8ea4d40 am 01a1f8b0: am b5239ed1: libc: allow usage of time64.h from cpp code
Merge commit '01a1f8b080d9d4e619ce00039f195f6fa3aa2045'

* commit '01a1f8b080d9d4e619ce00039f195f6fa3aa2045':
  libc: allow usage of time64.h from cpp code
2009-11-23 13:43:42 -08:00
..
arch-arm am 3ba822cc: am 199f9d92: Improve memcpy performance from 290 MiB/s to 340 MiB/s (17% improvment) 2009-10-29 19:53:39 -07:00
arch-sh added and modified bionic code to support SuperH architecture 2009-09-28 16:11:39 +09:00
arch-x86 Revert "Fix the C library initialization to avoid calling static C++ constructors twice." 2009-06-03 19:32:37 +02:00
bionic am 362b2aab: Merge change Ib4550a04 into eclair-mr2 2009-11-19 11:28:22 -08:00
docs am cdb68bf8: Merge change 2470 into donut 2009-05-27 03:31:12 -07:00
include am 01a1f8b0: am b5239ed1: libc: allow usage of time64.h from cpp code 2009-11-23 13:43:42 -08:00
inet auto import from //depot/cupcake/@135843 2009-03-03 19:28:35 -08:00
kernel am e8870ffc: am 110044b1: libc: kernel: Update msm_kgsl.h header 2009-11-13 04:08:01 -08:00
netbsd merge from open-source master 2009-09-15 07:51:39 -07:00
private resolved conflicts for merge of 4a05d12c to eclair-plus-aosp 2009-09-22 15:41:36 -07:00
stdio auto import from //depot/cupcake/@135843 2009-03-03 19:28:35 -08:00
stdlib Add stdlib functions mbstowcs() and wcstombs(). 2009-11-10 12:15:33 -08:00
string auto import from //depot/cupcake/@135843 2009-03-03 19:28:35 -08:00
tools modified SYSCALLS.TXT to support SuperH architecture 2009-09-01 19:03:06 +09:00
tzcode Fix an infinite loop in time2sub. 2009-09-09 17:45:00 -07:00
unistd merge from open-source master 2009-11-09 08:04:48 -08:00
zoneinfo Update zoneinfo time zone data to version 2009s 2009-11-20 14:39:55 -08:00
Android.mk am 362b2aab: Merge change Ib4550a04 into eclair-mr2 2009-11-19 11:28:22 -08:00
CAVEATS auto import from //depot/cupcake/@135843 2009-03-03 19:28:35 -08:00
Jamfile auto import from //depot/cupcake/@135843 2009-03-03 19:28:35 -08:00
MODULE_LICENSE_BSD auto import from //depot/cupcake/@135843 2009-03-03 19:28:35 -08:00
NOTICE auto import from //depot/cupcake/@135843 2009-03-03 19:28:35 -08:00
README Add an 's and a . to the bionic/libc README. 2009-07-23 17:41:47 -07:00
SYSCALLS.TXT modified SYSCALLS.TXT to support SuperH architecture 2009-09-01 19:03:06 +09:00

Welcome to Bionic, Android's small and custom C library for the Android
platform.

Bionic is mainly a port of the BSD C library to our Linux kernel with the
following additions/changes:

- no support for locales
- no support for wide chars (i.e. multi-byte characters)
- its own smallish implementation of pthreads based on Linux futexes
- support for x86, ARM and ARM thumb CPU instruction sets and kernel interfaces

Bionic is released under the standard 3-clause BSD License

Bionic doesn't want to implement all features of a traditional C library, we only
add features to it as we need them, and we try to keep things as simple and small
as possible. Our goal is not to support scaling to thousands of concurrent threads
on multi-processors machines; we're running this on cell-phones, damnit !!

Note that Bionic doesn't provide a libthread_db or a libm implementation.


Adding new syscalls:
====================

Bionic provides the gensyscalls.py Python script to automatically generate syscall
stubs from the list defined in the file SYSCALLS.TXT. You can thus add a new syscall
by doing the following:

- edit SYSCALLS.TXT
- add a new line describing your syscall, it should look like:

   return_type  syscall_name(parameters)    syscall_number

- in the event where you want to differentiate the syscall function from its entry name,
  use the alternate:

   return_type  funcname:syscall_name(parameters)  syscall_number

- additionally, if the syscall number is different between ARM and x86, use:

   return_type  funcname[:syscall_name](parameters)   arm_number,x86_number

- a syscall number can be -1 to indicate that the syscall is not implemented on
  a given platform, for example:

   void   __set_tls(void*)   arm_number,-1


the comments in SYSCALLS.TXT contain more information about the line format

You can also use the 'checksyscalls.py' script to check that all the syscall
numbers you entered are correct. It does so by looking at the values defined in
your Linux kernel headers. The script indicates where the values are incorrect
and what is expected instead.