We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0563bb7 + ba5a36b commit 8367a64Copy full SHA for 8367a64
beast_mm.c
@@ -60,12 +60,12 @@ static int beast_mm_block_size = 0;
60
static beast_atomic_t *mm_lock;
61
extern int beast_pid;
62
63
-inline void beast_mm_lock()
+void beast_mm_lock()
64
{
65
beast_spinlock(mm_lock, beast_pid);
66
}
67
68
-inline void beast_mm_unlock()
+void beast_mm_unlock()
69
70
beast_spinunlock(mm_lock, beast_pid);
71
cache.c
@@ -36,12 +36,12 @@ static cache_item_t **beast_cache_buckets = NULL;
36
static beast_atomic_t *cache_lock;
37
38
39
-inline void beast_cache_lock()
+void beast_cache_lock()
40
41
beast_spinlock(cache_lock, beast_pid);
42
43
44
-inline void beast_cache_unlock()
+void beast_cache_unlock()
45
46
beast_spinunlock(cache_lock, beast_pid);
47
0 commit comments