1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-07-15 12:48:08 +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:06:41 +09:00 committed by proninyaroslav
parent 97529893d2
commit ea19639bdc

View File

@ -198,7 +198,7 @@ static __always_inline void spin_lock(spinlock_t *lock)
}
```
function which allows us to `acquire` a spinlock. The `raw_spin_lock` macro is defined in the same header file and expnads to the call of `_raw_spin_lock`:
function which allows us to `acquire` a `spinlock`. The `raw_spin_lock` macro is defined in the same header file and expnads to the call of `_raw_spin_lock`:
```C
#define raw_spin_lock(lock) _raw_spin_lock(lock)