This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix ia64 pt-machine.h typo


Hi!

The following typo prevented IA-64 build (there is no __sync_syncronize
builtin).

2002-06-07  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/ia64/pt-machine.h (MEMORY_BARRIER): Fix typo.

--- libc/linuxthreads/sysdeps/ia64/pt-machine.h.jj	Thu May 30 06:03:57 2002
+++ libc/linuxthreads/sysdeps/ia64/pt-machine.h	Fri Jun  7 08:52:13 2002
@@ -71,7 +71,7 @@ register struct _pthread_descr_struct *_
 
 
 /* Memory barrier */
-#define MEMORY_BARRIER() __sync_syncronize ()
+#define MEMORY_BARRIER() __sync_synchronize ()
 
 
 #define HAS_COMPARE_AND_SWAP_WITH_RELEASE_SEMANTICS

	Jakub


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]