From 75a611e28d8d3177c3fb2b9abd19774a25f5a1ab Mon Sep 17 00:00:00 2001 From: SeongJae Park Date: Tue, 1 Oct 2019 19:36:55 +0200 Subject: [PATCH] SyncPrim/linux-sync-2.md: Fix a dot into semicolon Signed-off-by: SeongJae Park --- SyncPrim/linux-sync-2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SyncPrim/linux-sync-2.md b/SyncPrim/linux-sync-2.md index b354109..cbb9fb0 100644 --- a/SyncPrim/linux-sync-2.md +++ b/SyncPrim/linux-sync-2.md @@ -10,7 +10,7 @@ We saw the [API](https://en.wikipedia.org/wiki/Application_programming_interface * `spin_lock_init` - produces initialization of the given `spinlock`; * `spin_lock` - acquires given `spinlock`; -* `spin_lock_bh` - disables software [interrupts](https://en.wikipedia.org/wiki/Interrupt) and acquire given `spinlock`. +* `spin_lock_bh` - disables software [interrupts](https://en.wikipedia.org/wiki/Interrupt) and acquire given `spinlock`; * `spin_lock_irqsave` and `spin_lock_irq` - disable interrupts on local processor and preserve/not preserve previous interrupt state in the `flags`; * `spin_unlock` - releases given `spinlock` and acquire given `spinlock`; * `spin_unlock_bh` - releases given `spinlock` and enables software interrupts;