Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
small cleanups in the s4u::Activities
[simgrid.git] / include / xbt / synchro.h
index 1be5b5fa75cbcfa95826d5c48c0eb8fd5c5f401e..d882899237175838bc51b2b79cceae2d2f7e7d10 100644 (file)
@@ -1,6 +1,6 @@
 /* xbt/synchro.h -- Simulated synchronization                               */
 
-/* Copyright (c) 2009-2019. The SimGrid Team.                               */
+/* Copyright (c) 2009-2020. The SimGrid Team.                               */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -12,7 +12,7 @@
 #include <xbt/function_types.h>
 #include <xbt/misc.h> /* SG_BEGIN_DECL */
 
-SG_BEGIN_DECL()
+SG_BEGIN_DECL
 
 /** @addtogroup XBT_synchro
  *  @brief XBT synchronization tools
@@ -50,7 +50,7 @@ XBT_ATTRIB_DEPRECATED_v328("Please use sg_mutex_try_lock") XBT_PUBLIC int xbt_mu
 /** @brief Releases the given mutex variable */
 XBT_ATTRIB_DEPRECATED_v328("Please use sg_mutex_unlock") XBT_PUBLIC void xbt_mutex_release(xbt_mutex_t mutex);
 
-/** @brief Destroyes the given mutex variable */
+/** @brief Destroys the given mutex variable */
 XBT_ATTRIB_DEPRECATED_v328("Please use sg_mutex_destroy") XBT_PUBLIC void xbt_mutex_destroy(xbt_mutex_t mutex);
 
 /** @brief Thread condition data type (opaque object)
@@ -80,5 +80,5 @@ XBT_ATTRIB_DEPRECATED_v328("Please use sg_cond_destroy") XBT_PUBLIC void xbt_con
 
 /** @} */
 
-SG_END_DECL()
+SG_END_DECL
 #endif /* _XBT_THREAD_H */