diff options
author | Pavel Chupin <pavel.v.chupin@intel.com> | 2012-12-12 13:11:48 +0400 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2013-10-01 13:27:07 -0700 |
commit | f12a18b85061e7121c7534faf3625137e56b770d (patch) | |
tree | 85cadd86aaa5265734dde75a620ebf5da31187b5 /libc/tools/bionic_utils.py | |
parent | fd152c31586a1f5e6763b06f1182ccd72cb86b69 (diff) | |
download | bionic-f12a18b85061e7121c7534faf3625137e56b770d.zip bionic-f12a18b85061e7121c7534faf3625137e56b770d.tar.gz bionic-f12a18b85061e7121c7534faf3625137e56b770d.tar.bz2 |
x86_64: Add x86_64 syscalls and tune gen scripts for x86_64
* Tune syscall stubs generator for 4th target: x86_64
* Update SYSCALLS.TXT with x86_64 syscalls:
- Most of the x86 syscalls are equally supported
- *32 syscalls are not supported on 64-bit
- *64 syscalls are replaced accordingly without 64 suffix
- Some syscalls are not supported, replaced with x86_64 analog
Syscalls are regenerated as separate patch for review convenience.
Change-Id: I4ea2e0f13759b0aa61f05208ca68da8d6bc7c048
Signed-off-by: Pavel Chupin <pavel.v.chupin@intel.com>
Diffstat (limited to 'libc/tools/bionic_utils.py')
-rw-r--r-- | libc/tools/bionic_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/tools/bionic_utils.py b/libc/tools/bionic_utils.py index eed9001..a00080d 100644 --- a/libc/tools/bionic_utils.py +++ b/libc/tools/bionic_utils.py @@ -2,7 +2,7 @@ import sys, os, commands, string -all_arches = [ "arm", "mips", "x86" ] +all_arches = [ "arm", "mips", "x86", "x86_64" ] # basic debugging trace support # call D_setlevel to set the verbosity level |