aboutsummaryrefslogtreecommitdiff
path: root/nptl
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-02-20 23:36:05 +0000
committerUlrich Drepper <drepper@redhat.com>2004-02-20 23:36:05 +0000
commit5990e1fe120708a10ae8ab0caf4a284b5d6b10f8 (patch)
tree7c79ab4c3f52fc6af4496e2c00c0ffa73b8bf608 /nptl
parentf1c616fc8e249876e08bc01bb9748492515f65e2 (diff)
downloadglibc-5990e1fe120708a10ae8ab0caf4a284b5d6b10f8.tar
glibc-5990e1fe120708a10ae8ab0caf4a284b5d6b10f8.tar.gz
glibc-5990e1fe120708a10ae8ab0caf4a284b5d6b10f8.tar.bz2
glibc-5990e1fe120708a10ae8ab0caf4a284b5d6b10f8.zip
Update.
* sysdeps/unix/sysv/linux/powerpc/ptlongjmp.c [SHARED]: Code only valid for SHARED case. Correct spelling of __vmx_longjmp.
Diffstat (limited to 'nptl')
-rw-r--r--nptl/ChangeLog4
-rw-r--r--nptl/sysdeps/sh/jmpbuf-unwind.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog
index 61e57e607a..b079883f6b 100644
--- a/nptl/ChangeLog
+++ b/nptl/ChangeLog
@@ -1,3 +1,7 @@
+2004-02-20 Kaz Kojima <kkojima@rr.iij4u.or.jp>
+
+ * sysdeps/sh/jmpbuf-unwind.h (_JMPBUF_UNWINDS_ADJ): Fix variable name.
+
2004-02-20 Jakub Jelinek <jakub@redhat.com>
* sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h
diff --git a/nptl/sysdeps/sh/jmpbuf-unwind.h b/nptl/sysdeps/sh/jmpbuf-unwind.h
index 0fae2c2c23..7e36d830c0 100644
--- a/nptl/sysdeps/sh/jmpbuf-unwind.h
+++ b/nptl/sysdeps/sh/jmpbuf-unwind.h
@@ -25,4 +25,4 @@
_JMPBUF_UNWINDS_ADJ (_jmpbuf, (void *) _Unwind_GetCFA (_context), _adj)
#define _JMPBUF_UNWINDS_ADJ(jmpbuf, address, adj) \
- ((uintptr_t) (address) - (adj) < (uintptr_t) (_jmpbuf)[0].__regs[7] - (adj))
+ ((uintptr_t) (address) - (adj) < (uintptr_t) (jmpbuf)[0].__regs[7] - (adj))