summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_spinlock.h
blob: bdc3a5f624d9fc981f846c5bcdc477ac6f85a717 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57

/*
 * Copyright (C) Igor Sysoev
 * Copyright (C) NGINX, Inc.
 */

#ifndef _NXT_UNIX_SPINLOCK_H_INCLUDED_
#define _NXT_UNIX_SPINLOCK_H_INCLUDED_


#if (NXT_THREADS)

#if (NXT_HAVE_MACOSX_SPINLOCK)

#include <libkern/OSAtomic.h>

typedef OSSpinLock    nxt_thread_spinlock_t;

#define                                                                       \
nxt_thread_spin_init(ncpu, count)

#else

typedef nxt_atomic_t  nxt_thread_spinlock_t;

NXT_EXPORT void nxt_thread_spin_init(nxt_uint_t ncpu, nxt_uint_t count);

#endif


NXT_EXPORT void nxt_thread_spin_lock(nxt_thread_spinlock_t *lock);
NXT_EXPORT nxt_bool_t nxt_thread_spin_trylock(nxt_thread_spinlock_t *lock);
NXT_EXPORT void nxt_thread_spin_unlock(nxt_thread_spinlock_t *lock);


#else /* !(NXT_THREADS) */


typedef nxt_atomic_t  nxt_thread_spinlock_t;

#define                                                                       \
nxt_thread_spin_init(ncpu, count)

#define                                                                       \
nxt_thread_spin_lock(lock)

#define                                                                       \
nxt_thread_spin_trylock(lock)                                                 \
    1

#define                                                                       \
nxt_thread_spin_unlock(lock)

#endif


#endif /* _NXT_UNIX_SPINLOCK_H_INCLUDED_ */