diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-12-11 20:46:47 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-12-11 20:46:47 +0000 |
commit | 092eb73ca2507c29adb37cd8075730e43c1e3794 (patch) | |
tree | 3898bbd02791720be314b47950e2c19a06c68a4c /nptl | |
parent | 209454572369b17c5c038e2bf5295b789799e072 (diff) | |
download | glibc-092eb73ca2507c29adb37cd8075730e43c1e3794.tar glibc-092eb73ca2507c29adb37cd8075730e43c1e3794.tar.gz glibc-092eb73ca2507c29adb37cd8075730e43c1e3794.tar.bz2 glibc-092eb73ca2507c29adb37cd8075730e43c1e3794.zip |
Update.
2003-12-01 Jes Sorensen <jes@wildopensource.com>
* rt/tst-clock.c (do_test): Print message when skipping
CLOCK_PROCESS_CPUTIME_ID test.
* sysdeps/unix/sysv/linux/ia64/clock_getcpuclockid.c: New file.
Provide CLOCK_PROCESS_CPUTIME_ID only if /proc/sal/itc_drift is 0.
peek_token. This avoids some copying and reduces code size.
(init_dfa): Initialize map_notascii.
(build_wcs_upper_buffer): If map_notascii is zero use simplified
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 6 | ||||
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/ia64/pt-initfini.c | 13 |
2 files changed, 18 insertions, 1 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index ce6e760d15..472187f500 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,9 @@ +2003-12-10 David Mosberger <davidm@hpl.hp.com> + + * sysdeps/unix/sysv/linux/ia64/pt-initfini.c (_init_EPILOG_BEGINS): + Add unwind directives. Drop unused .regstk directive. + (_fini_EPILOG_BEGINS): Add unwind directives. + 2003-12-11 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_futex_wait): diff --git a/nptl/sysdeps/unix/sysv/linux/ia64/pt-initfini.c b/nptl/sysdeps/unix/sysv/linux/ia64/pt-initfini.c index a048839fb7..b7d4e57945 100644 --- a/nptl/sysdeps/unix/sysv/linux/ia64/pt-initfini.c +++ b/nptl/sysdeps/unix/sysv/linux/ia64/pt-initfini.c @@ -87,7 +87,12 @@ _init:\n\ \n\ /*@_init_EPILOG_BEGINS*/\n\ .section .init\n\ - .regstk 0,2,0,0\n\ + .proc _init#\n\ + .prologue\n\ + .save ar.pfs, r34\n\ + .vframe r32\n\ + .save rp, r33\n\ + .body\n\ mov r12 = r32\n\ mov ar.pfs = r34\n\ mov b0 = r33\n\ @@ -117,6 +122,12 @@ _fini:\n\ \n\ /*@_fini_EPILOG_BEGINS*/\n\ .section .fini\n\ + .proc _fini#\n\ + .prologue\n\ + .save ar.pfs, r34\n\ + .vframe r32\n\ + .save rp, r33\n\ + .body\n\ mov r12 = r32\n\ mov ar.pfs = r34\n\ mov b0 = r33\n\ |