1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-01-03 12:20:56 +00:00

SyncPrim: Consistently wrap 'spinlock' with '`'

Signed-off-by: SeongJae Park <sj38.park@gmail.com>
This commit is contained in:
SeongJae Park 2019-05-21 04:21:45 +09:00
parent 6708f9ff85
commit 5e190ae3b8

View File

@ -122,7 +122,7 @@ typedef struct qspinlock {
} arch_spinlock_t;
```
We will not stop on this structures for now. Let's look at the operations on a spinlock. The Linux kernel provides following main operations on a `spinlock`:
We will not stop on this structures for now. Let's look at the operations on a `spinlock`. The Linux kernel provides following main operations on a `spinlock`:
* `spin_lock_init` - produces initialization of the given `spinlock`;
* `spin_lock` - acquires given `spinlock`;