diff options
author | Attilio Rao <attilio@FreeBSD.org> | 2009-05-25 14:37:10 +0000 |
---|---|---|
committer | Attilio Rao <attilio@FreeBSD.org> | 2009-05-25 14:37:10 +0000 |
commit | 9235ed71993ec615fd4675e2b0e37afc1c346f48 (patch) | |
tree | 24ca73670f3ea12fd920051e3a590fb895db2b52 /lib/libc_r/arch/i386/_atomic_lock.S | |
parent | 5265bc60138160bd8ac706a89335a79167e5d4b4 (diff) |
Use, in uncovered part, the END() macro in order to improve debugging.
In this specific case, Valgrind won't get confused when analyzing such
functions.
Sponsored by: Sandvine Incorporated
Tested by: emaste
MFC: 3 days
Notes
Notes:
svn path=/head/; revision=192760
Diffstat (limited to 'lib/libc_r/arch/i386/_atomic_lock.S')
-rw-r--r-- | lib/libc_r/arch/i386/_atomic_lock.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libc_r/arch/i386/_atomic_lock.S b/lib/libc_r/arch/i386/_atomic_lock.S index af49aff68f03..7dba53cf499e 100644 --- a/lib/libc_r/arch/i386/_atomic_lock.S +++ b/lib/libc_r/arch/i386/_atomic_lock.S @@ -39,4 +39,5 @@ ENTRY(_atomic_lock) movl $1, %eax xchg %eax, (%ecx) ret +END(_atomic_lock) |