diff options
Diffstat (limited to 'sysdeps/x86_64/bits/atomic.h')
-rw-r--r-- | sysdeps/x86_64/bits/atomic.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdeps/x86_64/bits/atomic.h b/sysdeps/x86_64/bits/atomic.h index f31bedb0b3..133a68d192 100644 --- a/sysdeps/x86_64/bits/atomic.h +++ b/sysdeps/x86_64/bits/atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002, 2003 Free Software Foundation, Inc. +/* Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002. @@ -319,3 +319,6 @@ typedef uintmax_t uatomic_max_t; : "=q" (__result), "=m" (*mem) \ : "m" (*mem), "ir" (bit)); \ __result; }) + + +#define atomic_delay() asm ("rep; nop") |