Initial import from FreeBSD RELENG_4:
[games.git] / lib / libc_r / arch / i386 / _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  * $FreeBSD: src/lib/libc_r/arch/i386/_atomic_lock.S,v 1.3 1999/08/28 00:03:01 peter Exp $
23  *
24  */
25
26 #if defined(LIBC_RCS) && !defined(lint)
27         .text
28         .asciz "$FreeBSD: src/lib/libc_r/arch/i386/_atomic_lock.S,v 1.3 1999/08/28 00:03:01 peter Exp $"
29 #endif /* LIBC_RCS and not lint */
30
31 #include "DEFS.h"
32
33 /*
34  * Atomicly lock a location with an identifier provided the location
35  * is not currently locked.
36  *
37  * long _atomic_lock(long *);
38  * eax will contain the return value (zero if lock obtained).
39  */
40 ENTRY(_atomic_lock)
41         movl    4(%esp), %ecx
42         movl    $1, %eax
43         xchg    %eax, (%ecx)
44         ret
45