blob: 7a307f6575fe37a4be39f07eb784c88ad99d1ce6 [file] [log] [blame]
Andrew Scull18834872018-10-12 11:48:09 +01001/*
2 * Copyright 2018 Google LLC
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * https://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Andrew Scullfbc938a2018-08-20 14:09:28 +010017#pragma once
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010018
19#include <stdatomic.h>
20
21struct spinlock {
22 atomic_flag v;
23};
24
Andrew Scull4f170f52018-07-19 12:58:20 +010025#define SPINLOCK_INIT \
26 { \
27 .v = ATOMIC_FLAG_INIT \
28 }
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010029
30static inline void sl_init(struct spinlock *l)
31{
32 *l = (struct spinlock)SPINLOCK_INIT;
33}
34
35static inline void sl_lock(struct spinlock *l)
36{
Andrew Scull7364a8e2018-07-19 15:39:29 +010037 while (atomic_flag_test_and_set_explicit(&l->v, memory_order_acquire)) {
38 /* do nothing */
39 }
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010040}
41
42static inline void sl_unlock(struct spinlock *l)
43{
44 atomic_flag_clear_explicit(&l->v, memory_order_release);
45}