Commit 228e6ac2 by Kaz Kojima

locks.h (read_barrier): New.

	* sysdep/sh/locks.h (read_barrier): New.
	(write_barrier): Likewise.

From-SVN: r120735
parent db9d500a
2007-01-12 Kaz Kojima <kkojima@gcc.gnu.org>
* sysdep/sh/locks.h (read_barrier): New.
(write_barrier): Likewise.
2007-01-12 Andrew Haley <aph@redhat.com>
* include/i386-signal.h: Rewrite to use rt_sigaction.
......
// locks.h - Thread synchronization primitives. SuperH implementation.
/* Copyright (C) 2002 Free Software Foundation
/* Copyright (C) 2002, 2007 Free Software Foundation
This file is part of libgcj.
......@@ -69,4 +69,16 @@ compare_and_swap_release (volatile obj_addr_t *addr, obj_addr_t old,
return compare_and_swap (addr, old, new_val);
}
inline static void
read_barrier()
{
__asm__ __volatile__(" " : : : "memory");
}
inline static void
write_barrier()
{
__asm__ __volatile__(" " : : : "memory");
}
#endif /* ! __SYSDEP_LOCKS_H__ */
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