From 5e190ae3b8f4c38b559662ae36c89906697a20e4 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 5ae678c..fc8f1ce 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`;