]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - lib/libc_r/arch/amd64/_atomic_lock.S
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / lib / libc_r / arch / amd64 / _atomic_lock.S
1 /*
2  * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>.
3  * All rights reserved.
4  * copyright Douglas Santry 1996
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the above copyright is retained
8  * in the source form.
9  *
10  * THIS SOFTWARE IS PROVIDED BY Douglas Santry AND CONTRIBUTORS ``AS IS'' AND
11  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE  
12  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE   
13  * ARE DISCLAIMED.  IN NO EVENT SHALL Douglas Santry OR CONTRIBUTORS BE LIABLE 
14  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL   
15  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS      
16  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
17  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
18  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 
19  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF  
20  * SUCH DAMAGE.    
21  */
22
23 #if defined(LIBC_RCS) && !defined(lint)
24         .text
25         .asciz "$FreeBSD$"
26 #endif /* LIBC_RCS and not lint */
27
28 #include <machine/asm.h>
29
30 /*
31  * Atomicly lock a location with an identifier provided the location
32  * is not currently locked.
33  *
34  * long _atomic_lock(long *);
35  * eax will contain the return value (zero if lock obtained).
36  */
37 ENTRY(_atomic_lock)
38         movl    $1, %eax
39         xchgq   %rax, (%rdi)
40         ret
41 END(_atomic_lock)
42