Fix compilation issue with older gcc
[samplevnf.git] / common / VIL / l2l3_stack / hle.c
1 /*
2 // Copyright (c) 2017 Intel Corporation
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 #include "tsx.h"
17 //#include "hle.h"
18 #include <xmmintrin.h>
19
20 void hle_init(void)
21 {
22         mutex_val = 0;
23 }
24
25 int hle_lock(void)
26 {
27         while (__atomic_exchange_n
28                                  (&mutex_val, 1, __ATOMIC_ACQUIRE | __ATOMIC_HLE_ACQUIRE))
29                 _mm_pause();
30         return TRUE;
31 }
32
33 int hle_release(void)
34 {
35         __atomic_store_n(&mutex_val, 0,
36                          __ATOMIC_RELEASE | __ATOMIC_HLE_RELEASE);
37         return TRUE;
38 }
39
40 int is_hle_locked(void)
41 {
42         return (mutex_val == 0) ? FALSE : TRUE;
43 }