Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Mark all of simix.h as deprecated.
[simgrid.git] / include / simgrid / barrier.h
index 2837633..f7b2f57 100644 (file)
@@ -1,6 +1,6 @@
-/* Public interface to the Link datatype                                    */
+/* Public interface to the Barrier datatype                                 */
 
-/* Copyright (c) 2018-2019. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2018-2022. The SimGrid Team. All rights reserved.          */
 
 /* 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. */
 #include <simgrid/forward.h>
 
 #ifdef __cplusplus
-constexpr int SG_BARRIER_SERIAL_THREAD = -1;
+constexpr bool SG_BARRIER_SERIAL_THREAD = true;
 #else
 #define SG_BARRIER_SERIAL_THREAD -1
 #endif
 
 /* C interface */
-SG_BEGIN_DECL()
+SG_BEGIN_DECL
 
 XBT_PUBLIC sg_bar_t sg_barrier_init(unsigned int count);
 XBT_PUBLIC void sg_barrier_destroy(sg_bar_t bar);
 XBT_PUBLIC int sg_barrier_wait(sg_bar_t bar);
 
-SG_END_DECL()
+SG_END_DECL
 
 #endif /* INCLUDE_SIMGRID_BARRIER_H_ */