Fix the build on ia64.

Submitted by:	marcel
This commit is contained in:
Joe Marcus Clarke 2006-07-06 21:46:17 +00:00
parent 787d3a255c
commit 5a499c5d1e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=167096

View File

@ -0,0 +1,37 @@
--- glib/gatomic.c.orig Thu Jul 6 11:21:02 2006
+++ glib/gatomic.c Thu Jul 6 11:18:48 2006
@@ -414,14 +414,14 @@
g_atomic_int_exchange_and_add (volatile gint *atomic,
gint val)
{
- return __sync_fetch_and_add (atomic, val);
+ return __sync_fetch_and_add_si (atomic, val);
}
void
g_atomic_int_add (volatile gint *atomic,
gint val)
{
- __sync_fetch_and_add (atomic, val);
+ __sync_fetch_and_add_si (atomic, val);
}
gboolean
@@ -429,7 +429,7 @@
gint oldval,
gint newval)
{
- return __sync_bool_compare_and_swap (atomic, oldval, newval);
+ return __sync_bool_compare_and_swap_si (atomic, oldval, newval);
}
gboolean
@@ -437,7 +437,7 @@
gpointer oldval,
gpointer newval)
{
- return __sync_bool_compare_and_swap ((long *)atomic,
+ return __sync_bool_compare_and_swap_di ((long *)atomic,
(long)oldval, (long)newval);
}