UbixOS  2.0
spinlock.c
Go to the documentation of this file.
1 /*-
2  * Copyright (c) 2002-2018 The UbixOS Project.
3  * All rights reserved.
4  *
5  * This was developed by Christopher W. Olsen for the UbixOS Project.
6  *
7  * Redistribution and use in source and binary forms, with or without modification, are permitted
8  * provided that the following conditions are met:
9  *
10  * 1) Redistributions of source code must retain the above copyright notice, this list of
11  * conditions, the following disclaimer and the list of authors.
12  * 2) Redistributions in binary form must reproduce the above copyright notice, this list of
13  * conditions, the following disclaimer and the list of authors in the documentation and/or
14  * other materials provided with the distribution.
15  * 3) Neither the name of the UbixOS Project nor the names of its contributors may be used to
16  * endorse or promote products derived from this software without specific prior written
17  * permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
20  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
22  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
24  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
26  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #include <ubixos/spinlock.h>
30 #include <ubixos/sched.h>
31 
32 void spinLockInit(spinLock_t *lock) {
33  *lock = SPIN_LOCK_INITIALIZER;
34  }
35 
36 void spinUnlock(spinLock_t *lock) {
37  *lock = 0x0;
38  /*
39  register int unlocked;
40  asm volatile(
41  "xchgl %0, %1"
42  : "=&r" (unlocked), "=m" (*lock) : "0" (0)
43  );
44  */
45  }
46 
47 int spinTryLock(spinLock_t *lock) {
48  register int locked;
49  asm volatile("xchgl %0, %1"
50  : "=&r" (locked), "=m" (*lock) : "0" (1)
51  );
52  return(!locked);
53  }
54 
55 void spinLock(spinLock_t *lock) {
56  while (!spinTryLock(lock))
57  {
58  while (*lock == 1)
59  sched_yield();
60  }
61 }
62 
64  while (!spinTryLock(lock))
65  while (*lock == 1);
66  }
67 
68 
70  return(*lock != 0);
71  }
72 
73 
74 /***
75  END
76  ***/
77 
spinLockInit
void spinLockInit(spinLock_t *lock)
Definition: spinlock.c:32
spinlock.h
spinUnlock
void spinUnlock(spinLock_t *lock)
Definition: spinlock.c:36
SPIN_LOCK_INITIALIZER
#define SPIN_LOCK_INITIALIZER
Definition: spinlock.h:36
sched.h
spinLock
void spinLock(spinLock_t *lock)
Definition: spinlock.c:55
spinLockLocked
int spinLockLocked(spinLock_t *lock)
Definition: spinlock.c:69
spinLock_scheduler
void spinLock_scheduler(spinLock_t *lock)
Definition: spinlock.c:63
spinLock
Definition: spinlock.h:41
spinTryLock
int spinTryLock(spinLock_t *lock)
Definition: spinlock.c:47
sched_yield
void sched_yield()
Definition: sched.c:244