Make __set_errno hidden in asm.

This fixes the build after the -Bsymbolic change.

Bug: 16853291
Change-Id: I989c9fec3c32e0289ea257a3bd2b7fd2709b6ce2
(cherry picked from commit bc9f9f25bf)
This commit is contained in:
Dan Albert
2014-08-08 15:19:20 -07:00
parent 43227c0b40
commit e35fd48a83
1159 changed files with 2318 additions and 0 deletions

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__accept4)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__brk)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__connect)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__epoll_pwait)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__exit)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__fcntl64)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__fstatfs64)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__getcpu)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__getcwd)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__getdents64)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__getpid)
movl $__NR_getpid, %eax
int $0x80

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__getpriority)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__ioctl)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__llseek)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__mmap2)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__openat)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__ppoll)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__pselect6)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__ptrace)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__reboot)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__rt_sigaction)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__rt_sigpending)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__rt_sigprocmask)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__rt_sigsuspend)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__rt_sigtimedwait)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__sched_getaffinity)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__set_thread_area)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__set_tid_address)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__sigaction)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__signalfd4)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__socket)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__statfs64)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__timer_create)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__timer_delete)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__timer_getoverrun)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__timer_gettime)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__timer_settime)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(__waitid)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(_exit)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(acct)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(bind)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(capget)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(capset)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(chdir)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(chroot)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(clock_getres)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(clock_gettime)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(clock_nanosleep)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(clock_settime)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(close)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(delete_module)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(dup)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(dup3)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(epoll_create1)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(epoll_ctl)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(eventfd)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(execve)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(faccessat)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(fallocate64)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(fchdir)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(fchmod)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(fchmodat)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(fchown)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(fchownat)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(fdatasync)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(fgetxattr)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(flistxattr)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(flock)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(fremovexattr)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(fsetxattr)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(fstat64)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(fstatat64)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(fsync)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(ftruncate)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(ftruncate64)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(getegid)
movl $__NR_getegid32, %eax
int $0x80

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(geteuid)
movl $__NR_geteuid32, %eax
int $0x80

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(getgid)
movl $__NR_getgid32, %eax
int $0x80

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(getgroups)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(getitimer)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(getpeername)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(getpgid)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(getppid)
movl $__NR_getppid, %eax
int $0x80

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(getresgid)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(getresuid)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(getrlimit)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(getrusage)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(getsid)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(getsockname)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(getsockopt)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(gettimeofday)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(getuid)
movl $__NR_getuid32, %eax
int $0x80

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(getxattr)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(init_module)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(inotify_add_watch)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(inotify_init1)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(inotify_rm_watch)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(kill)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(klogctl)
pushl %ebx
.cfi_def_cfa_offset 8

View File

@@ -2,6 +2,8 @@
#include <private/bionic_asm.h>
.hidden __set_errno
ENTRY(lgetxattr)
pushl %ebx
.cfi_def_cfa_offset 8

Some files were not shown because too many files have changed in this diff Show More