tunnel: removed unused function
[sliver-openvswitch.git] / lib / ovs-atomic-pthreads.c
1 /*
2  * Copyright (c) 2013, 2014 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18
19 #include "ovs-atomic.h"
20 #include "ovs-thread.h"
21
22 #if OVS_ATOMIC_PTHREADS_IMPL
23 void
24 atomic_flag_init(volatile atomic_flag *flag_)
25 {
26     atomic_flag *flag = CONST_CAST(atomic_flag *, flag_);
27
28     pthread_mutex_init(&flag->mutex, NULL);
29     atomic_flag_clear(flag_);
30 }
31
32 void
33 atomic_flag_destroy(volatile atomic_flag *flag_)
34 {
35     atomic_flag *flag = CONST_CAST(atomic_flag *, flag_);
36
37     pthread_mutex_destroy(&flag->mutex);
38 }
39
40 bool
41 atomic_flag_test_and_set(volatile atomic_flag *flag_)
42 {
43     atomic_flag *flag = CONST_CAST(atomic_flag *, flag_);
44     bool old_value;
45
46     xpthread_mutex_lock(&flag->mutex);
47     old_value = flag->b;
48     flag->b = true;
49     xpthread_mutex_unlock(&flag->mutex);
50
51     return old_value;
52 }
53
54 bool
55 atomic_flag_test_and_set_explicit(volatile atomic_flag *flag,
56                                   memory_order order OVS_UNUSED)
57 {
58     return atomic_flag_test_and_set(flag);
59 }
60
61 void
62 atomic_flag_clear(volatile atomic_flag *flag_)
63 {
64     atomic_flag *flag = CONST_CAST(atomic_flag *, flag_);
65
66     xpthread_mutex_lock(&flag->mutex);
67     flag->b = false;
68     xpthread_mutex_unlock(&flag->mutex);
69 }
70
71 void
72 atomic_flag_clear_explicit(volatile atomic_flag *flag,
73                            memory_order order OVS_UNUSED)
74 {
75     return atomic_flag_clear(flag);
76 }
77
78 #endif  /* OVS_ATOMIC_PTHREADS_IMPL */