Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use C11 atomic_flag instead of gcc builtins.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Tue, 5 Feb 2019 11:05:51 +0000 (12:05 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Tue, 5 Feb 2019 12:26:53 +0000 (13:26 +0100)
src/xbt/mallocator.c
src/xbt/mallocator_private.h

index 041f82c..3469e22 100644 (file)
@@ -46,13 +46,13 @@ static int initialization_done = 0;
 
 static inline void lock_reset(xbt_mallocator_t m)
 {
-  m->lock = 0;
+  atomic_flag_clear(&m->lock);
 }
 
 static inline void lock_acquire(xbt_mallocator_t m)
 {
   if (initialization_done > 1) {
-    while (__atomic_test_and_set(&m->lock, __ATOMIC_ACQUIRE))
+    while (atomic_flag_test_and_set(&m->lock))
       /* nop */;
   }
 }
@@ -60,7 +60,7 @@ static inline void lock_acquire(xbt_mallocator_t m)
 static inline void lock_release(xbt_mallocator_t m)
 {
   if (initialization_done > 1)
-    __atomic_clear(&m->lock, __ATOMIC_RELEASE);
+    atomic_flag_clear(&m->lock);
 }
 
 /**
index c63d80c..77f9149 100644 (file)
@@ -8,6 +8,7 @@
 #ifndef XBT_MALLOCATOR_PRIVATE_H
 #define XBT_MALLOCATOR_PRIVATE_H
 
+#include <stdatomic.h>
 #include <xbt/function_types.h>
 
 typedef struct s_xbt_mallocator {
@@ -17,7 +18,7 @@ typedef struct s_xbt_mallocator {
   pvoid_f_void_t new_f;         /* function to call when we are running out of objects */
   void_f_pvoid_t free_f;        /* function to call when we have got too many objects */
   void_f_pvoid_t reset_f;       /* function to call when an object is released by the user */
-  char lock;                    /* lock to ensure the mallocator is thread-safe */
+  atomic_flag lock;             /* lock to ensure the mallocator is thread-safe */
 } s_xbt_mallocator_t;
 
 #endif