From 86778ce0579bd23efffd65bfdb21670476431152 Mon Sep 17 00:00:00 2001 From: SeongJae Park Date: Tue, 21 May 2019 04:21:45 +0900 Subject: [PATCH] SyncPrim: Consistently wrap 'spinlock' with '`' Signed-off-by: SeongJae Park --- SyncPrim/linux-sync-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SyncPrim/linux-sync-1.md b/SyncPrim/linux-sync-1.md index a7f1855..38decab 100644 --- a/SyncPrim/linux-sync-1.md +++ b/SyncPrim/linux-sync-1.md @@ -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`;