diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2016-08-28 06:15:34 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2016-08-28 06:15:34 +0000 |
commit | 22ee552a7e524cb0c02fd7469c2e3a30fbdae52d (patch) | |
tree | b79b0e2a470a96b44a2c413fb19e6dca5148fea8 /libexec/ld.so/hppa | |
parent | c659df72abcf8acd1a6d405b9aa6eb16e0a918a5 (diff) |
ld.so doesn't need gettimeofday or lstat stubs any more
ok deraadt@
Diffstat (limited to 'libexec/ld.so/hppa')
-rw-r--r-- | libexec/ld.so/hppa/ldasm.S | 14 | ||||
-rw-r--r-- | libexec/ld.so/hppa/syscall.h | 4 |
2 files changed, 2 insertions, 16 deletions
diff --git a/libexec/ld.so/hppa/ldasm.S b/libexec/ld.so/hppa/ldasm.S index 1663eb65f04..967d95cf6e0 100644 --- a/libexec/ld.so/hppa/ldasm.S +++ b/libexec/ld.so/hppa/ldasm.S @@ -1,4 +1,4 @@ -/* $OpenBSD: ldasm.S,v 1.21 2016/05/07 19:05:23 guenther Exp $ */ +/* $OpenBSD: ldasm.S,v 1.22 2016/08/28 06:15:32 guenther Exp $ */ /* * Copyright (c) 2004 Michael Shalayeff @@ -242,24 +242,12 @@ ENTRY(_dl_getdents,0) nop EXIT(_dl_getdents) -ENTRY(_dl_gettimeofday,0) - SYSCALL(gettimeofday) - bv r0(rp) - nop -EXIT(_dl_gettimeofday) - ENTRY(_dl_readlink,0) SYSCALL(readlink) bv r0(rp) nop EXIT(_dl_readlink) -ENTRY(_dl_lstat,0) - SYSCALL(lstat) - bv r0(rp) - nop -EXIT(_dl_lstat) - ENTRY(_dl_getcwd,0) SYSCALL(__getcwd) bv r0(rp) diff --git a/libexec/ld.so/hppa/syscall.h b/libexec/ld.so/hppa/syscall.h index b64012d817d..a19798aa77d 100644 --- a/libexec/ld.so/hppa/syscall.h +++ b/libexec/ld.so/hppa/syscall.h @@ -1,4 +1,4 @@ -/* $OpenBSD: syscall.h,v 1.22 2016/07/04 21:15:06 guenther Exp $ */ +/* $OpenBSD: syscall.h,v 1.23 2016/08/28 06:15:32 guenther Exp $ */ /* * Copyright (c) 2001 Niklas Hallqvist @@ -51,10 +51,8 @@ ssize_t _dl_read(int, const char *, size_t); int _dl_fstat(int, struct stat *); ssize_t _dl_getdents(int, char *, size_t); int _dl_sysctl(const int *, u_int, void *, size_t *, void *, size_t); -int _dl_gettimeofday(struct timeval *, struct timezone *); ssize_t _dl_readlink(const char *, char *, size_t); int _dl_pledge(const char *, const char **); -int _dl_lstat(const char *, struct stat *); int _dl_getcwd(char *, size_t); int _dl_utrace(const char *, const void *, size_t); int _dl_getentropy(char *, size_t); |