Commit e0ae1389 by H.J. Lu Committed by H.J. Lu

re PR libgcj/30424 (revision 120632 failed to build on ia64)

2007-01-10  H.J. Lu  <hongjiu.lu@intel.com>

	PR libgcj/30424
	* sysdep/ia64/locks.h (read_barrier): New.
	(write_barrier): New.

From-SVN: r120645
parent 143f796e
2007-01-10 H.J. Lu <hongjiu.lu@intel.com>
PR libgcj/30424
* sysdep/ia64/locks.h (read_barrier): New.
(write_barrier): New.
2007-01-10 Gary Benson <gbenson@redhat.com>
* java/net/URL.java: Removed.
......
......@@ -46,4 +46,16 @@ compare_and_swap_release(volatile obj_addr_t *addr,
return (out == old);
}
inline static void
read_barrier()
{
__sync_synchronize ();
}
inline static void
write_barrier()
{
__sync_synchronize ();
}
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment