From ba908190d76f942235df208b90d85e71ae17e984 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 18 Dec 2000 22:36:28 +0000 Subject: Update. 2000-12-18 Jes Sorensen * linuxthreads/sysdeps/ia64/pt-machine.h: __compare_and_swap and compare_and_swap_with_release_semantics returns int not long. --- linuxthreads/sysdeps/ia64/pt-machine.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'linuxthreads/sysdeps/ia64') 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) -- cgit 1.4.1