diff options
author | Roland McGrath <roland@gnu.org> | 2006-01-31 01:26:18 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2006-01-31 01:26:18 +0000 |
commit | 27d7e3b54c07b8eff35d2ff07ff9eb8ea03c853e (patch) | |
tree | eb07daa5096c8c58ed11d8918243b3045c922b07 /sysdeps/mips | |
parent | 18e2ac6dbbba2c85bfd7f841b6de586b51769a16 (diff) | |
download | glibc-27d7e3b54c07b8eff35d2ff07ff9eb8ea03c853e.zip glibc-27d7e3b54c07b8eff35d2ff07ff9eb8ea03c853e.tar.gz glibc-27d7e3b54c07b8eff35d2ff07ff9eb8ea03c853e.tar.bz2 |
* sysdeps/unix/sysv/linux/mips/bits/errno.h (ECANCELED,
EOWNERDEAD, ENOTRECOVERABLE): Define.
* sysdeps/unix/sysv/linux/mips/bits/mman.h (MADV_REMOVE): Define.
* sysdeps/mips/dl-machine.h (RTLD_START): Correct offsets for
N64.
* sysdeps/unix/sysv/linux/mips/bits/socket.h (struct msghdr): Use
size_t for msg_controllen.
(__cmsg_nxthdr): Correct test.
(__SCM_CONNECT): Delete.
Diffstat (limited to 'sysdeps/mips')
-rw-r--r-- | sysdeps/mips/dl-machine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mips/dl-machine.h b/sysdeps/mips/dl-machine.h index aa2cef8..c04609f 100644 --- a/sysdeps/mips/dl-machine.h +++ b/sysdeps/mips/dl-machine.h @@ -266,13 +266,13 @@ do { \ " STRINGXP(PTR_ADDU) " $7, $7, " STRINGXP (PTRSIZE) " \n\ # Make sure the stack pointer is aligned for _dl_init_internal.\n\ and $2, $29, -2 * " STRINGXP(SZREG) "\n\ - " STRINGXP(PTR_S) " $29, -4($2)\n\ + " STRINGXP(PTR_S) " $29, -" STRINGXP(SZREG) "($2)\n\ " STRINGXP(PTR_SUBIU) " $29, $2, 32\n\ " STRINGXP(SAVE_GP(16)) "\n\ # Call the function to run the initializers.\n\ jal _dl_init_internal\n\ # Restore the stack pointer for _start.\n\ - " STRINGXP(PTR_L) " $29, 28($29)\n\ + " STRINGXP(PTR_L) " $29, 32-" STRINGXP(SZREG) "($29)\n\ # Pass our finalizer function to the user in $2 as per ELF ABI.\n\ " STRINGXP(PTR_LA) " $2, _dl_fini\n\ # Jump to the user entry point.\n\ |