blob: a8d2579df84b00d26a0581d0f65f93406217448f (
plain)
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 2018 Staysail Systems, Inc. <info@staysail.tech>
// Copyright 2018 Capitar IT Group BV <info@capitar.com>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt). A copy of the license may also be
// found online at https://opensource.org/licenses/MIT.
//
// POSIX atomics.
#include "core/nng_impl.h"
#ifdef NNG_PLATFORM_POSIX
#ifdef NNG_HAVE_STDATOMIC
#include <stdatomic.h>
bool
nni_atomic_flag_test_and_set(nni_atomic_flag *f)
{
return (atomic_flag_test_and_set(&f->f));
}
void
nni_atomic_flag_reset(nni_atomic_flag *f)
{
atomic_flag_clear(&f->f);
}
#else
#include <pthread.h>
static pthread_mutex_t plat_atomic_lock = PTHREAD_MUTEX_INITIALIZER;
bool
nni_atomic_flag_test_and_set(nni_atomic_flag *f)
{
bool v;
pthread_mutex_lock(&plat_atomic_lock);
v = f->f;
f->f = true;
pthread_mutex_unlock(&plat_atomic_lock);
return (v);
}
void
nni_atomic_flag_reset(nni_atomic_flag *f)
{
pthread_mutex_lock(&plat_atomic_lock);
f->f = false;
pthread_mutex_unlock(&plat_atomic_lock);
}
#endif
#endif // NNG_PLATFORM_POSIX
|