diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-12-18 22:36:28 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-12-18 22:36:28 +0000 |
commit | ba908190d76f942235df208b90d85e71ae17e984 (patch) | |
tree | 58dbd4ea4cb3643742789ac35982575fab5d7be3 | |
parent | 9b4b880b41753ca013f8b694f722c7967a7bfd35 (diff) | |
download | glibc-ba908190d76f942235df208b90d85e71ae17e984.tar glibc-ba908190d76f942235df208b90d85e71ae17e984.tar.gz glibc-ba908190d76f942235df208b90d85e71ae17e984.tar.bz2 glibc-ba908190d76f942235df208b90d85e71ae17e984.zip |
Update.
2000-12-18 Jes Sorensen <jes@linuxcare.com>
* linuxthreads/sysdeps/ia64/pt-machine.h: __compare_and_swap
and compare_and_swap_with_release_semantics returns int not long.
-rw-r--r-- | linuxthreads/ChangeLog | 5 | ||||
-rw-r--r-- | linuxthreads/sysdeps/ia64/pt-machine.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index fd2531c493..1078f99c06 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,8 @@ +2000-12-18 Jes Sorensen <jes@linuxcare.com> + + * linuxthreads/sysdeps/ia64/pt-machine.h: __compare_and_swap + and compare_and_swap_with_release_semantics returns int not long. + 2000-12-17 Andreas Jaeger <aj@suse.de> * sysdeps/s390/pt-machine.h (testandset): Use long int as return diff --git a/linuxthreads/sysdeps/ia64/pt-machine.h b/linuxthreads/sysdeps/ia64/pt-machine.h index 58cccc2962..a243c8b577 100644 --- a/linuxthreads/sysdeps/ia64/pt-machine.h +++ b/linuxthreads/sysdeps/ia64/pt-machine.h @@ -58,7 +58,7 @@ register struct _pthread_descr_struct *__thread_self __asm__("r13"); #define HAS_COMPARE_AND_SWAP_WITH_RELEASE_SEMANTICS -PT_EI long int +PT_EI int __compare_and_swap (long int *p, long int oldval, long int newval) { long int readval; @@ -72,7 +72,7 @@ __compare_and_swap (long int *p, long int oldval, long int newval) return readval == oldval; } -PT_EI long int +PT_EI int __compare_and_swap_with_release_semantics (long int *p, long int oldval, long int newval) |