X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f..2e579c30e0553e6527b8f33322d49b5d9d5d7453:/include/simgrid/barrier.h diff --git a/include/simgrid/barrier.h b/include/simgrid/barrier.h index 24ee73239b..f7b2f5739d 100644 --- a/include/simgrid/barrier.h +++ b/include/simgrid/barrier.h @@ -1,6 +1,6 @@ -/* Public interface to the Link datatype */ +/* Public interface to the Barrier datatype */ -/* Copyright (c) 2018-2021. 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. */ @@ -11,7 +11,7 @@ #include #ifdef __cplusplus -constexpr int SG_BARRIER_SERIAL_THREAD = -1; +constexpr bool SG_BARRIER_SERIAL_THREAD = true; #else #define SG_BARRIER_SERIAL_THREAD -1 #endif @@ -20,7 +20,7 @@ constexpr int SG_BARRIER_SERIAL_THREAD = -1; SG_BEGIN_DECL XBT_PUBLIC sg_bar_t sg_barrier_init(unsigned int count); -XBT_PUBLIC void sg_barrier_destroy(const_sg_bar_t bar); +XBT_PUBLIC void sg_barrier_destroy(sg_bar_t bar); XBT_PUBLIC int sg_barrier_wait(sg_bar_t bar); SG_END_DECL