diff options
author | Andreas Jaeger <aj@suse.de> | 2000-06-22 13:57:50 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-06-22 13:57:50 +0000 |
commit | 3cfd2d07c0536772eded39762bd3021c4e3f0ebf (patch) | |
tree | a269ec2d5c57be6df49a6c3b16f788b7899aa6b2 | |
parent | 72a964353fe9e21f651d76c39cc50f10aec0d737 (diff) | |
download | glibc-3cfd2d07c0536772eded39762bd3021c4e3f0ebf.tar.gz glibc-3cfd2d07c0536772eded39762bd3021c4e3f0ebf.tar.xz glibc-3cfd2d07c0536772eded39762bd3021c4e3f0ebf.zip |
Update.
* elf/dl-reloc.c (_dl_relocate_object): Fix typos.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | elf/dl-reloc.c | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/syscalls.list | 2 |
3 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index be01f8ab58..68cd677622 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2000-06-22 Andreas Jaeger <aj@suse.de> + * elf/dl-reloc.c (_dl_relocate_object): Fix typos. + * sysdeps/unix/sysv/linux/mips/syscalls.list: Fix sysctl entry. 2000-06-21 Ulrich Drepper <drepper@redhat.com> diff --git a/elf/dl-reloc.c b/elf/dl-reloc.c index b389c42b1e..f840f3c802 100644 --- a/elf/dl-reloc.c +++ b/elf/dl-reloc.c @@ -95,7 +95,7 @@ cannot make segment writable for relocation")); { /* Allocate the array which will contain the already found relocations. If the shared object lacks a PLT (for example - if it inly contains lead function) the l_info[DT_PLTRELSZ] + if it only contains lead function) the l_info[DT_PLTRELSZ] will be NULL. */ if (l->l_info[DT_PLTRELSZ] == NULL) _dl_sysdep_fatal (_dl_argv[0] ?: "<program name unknown>", @@ -107,7 +107,7 @@ cannot make segment writable for relocation")); l->l_info[DT_PLTRELSZ]->d_un.d_val); if (l->l_reloc_result == NULL) _dl_sysdep_fatal (_dl_argv[0] ?: "<program name unknown>", - ": profiler outof memory shadowing PLTREL of ", + ": profiler out of memory shadowing PLTREL of ", l->l_name, "\n", NULL); } } diff --git a/sysdeps/unix/sysv/linux/mips/syscalls.list b/sysdeps/unix/sysv/linux/mips/syscalls.list index 125f23bf99..7ed897c5c8 100644 --- a/sysdeps/unix/sysv/linux/mips/syscalls.list +++ b/sysdeps/unix/sysv/linux/mips/syscalls.list @@ -73,7 +73,7 @@ s_stat64 xstat64 stat64 2 __syscall_stat64 s_truncate64 truncate64 truncate64 3 __syscall_truncate64 # Todo: we can pass 6 args in registers, no need for the wrapper -sys_sysctl sysctl _sysctl 1 __syscall_sysctl +sys_sysctl sysctl _sysctl 1 __syscall__sysctl sys_fstat fxstat fstat 2 __syscall_fstat sys_lstat lxstat lstat 2 __syscall_lstat sys_readv readv readv 3 __syscall_readv |