X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e3ebc5c6d7a1f40e8587bdb636c7c36a1944b75f..3297da9f47ce18371941b2b48a2f4018b4793ced:/include/xbt/synchro.h diff --git a/include/xbt/synchro.h b/include/xbt/synchro.h index e5f7d066d8..a4923d257f 100644 --- a/include/xbt/synchro.h +++ b/include/xbt/synchro.h @@ -1,6 +1,6 @@ /* xbt/synchro.h -- Simulated synchronization */ -/* Copyright (c) 2009-2016. The SimGrid Team. */ +/* Copyright (c) 2009-2018. 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. */ @@ -8,8 +8,9 @@ #ifndef XBT_THREAD_H #define XBT_THREAD_H -#include "xbt/function_types.h" -#include "xbt/misc.h" /* SG_BEGIN_DECL */ +#include "simgrid/forward.h" +#include +#include /* SG_BEGIN_DECL */ SG_BEGIN_DECL() @@ -29,44 +30,48 @@ SG_BEGIN_DECL() typedef struct s_smx_mutex_* xbt_mutex_t; /** @brief Creates a new mutex variable */ -XBT_PUBLIC(xbt_mutex_t) xbt_mutex_init(void); +XBT_PUBLIC xbt_mutex_t xbt_mutex_init(void); /** @brief Blocks onto the given mutex variable */ -XBT_PUBLIC(void) xbt_mutex_acquire(xbt_mutex_t mutex); +XBT_PUBLIC void xbt_mutex_acquire(xbt_mutex_t mutex); /** @brief Tries to block onto the given mutex variable * Tries to lock a mutex, return 1 if the mutex is unlocked, else 0. * This function does not block and wait for the mutex to be unlocked. - * \param mutex The mutex - * \return 1 - mutex free, 0 - mutex used + * @param mutex The mutex + * @return 1 - mutex free, 0 - mutex used */ -XBT_PUBLIC(int) xbt_mutex_try_acquire(xbt_mutex_t mutex); +XBT_PUBLIC int xbt_mutex_try_acquire(xbt_mutex_t mutex); /** @brief Releases the given mutex variable */ -XBT_PUBLIC(void) xbt_mutex_release(xbt_mutex_t mutex); +XBT_PUBLIC void xbt_mutex_release(xbt_mutex_t mutex); /** @brief Destroyes the given mutex variable */ -XBT_PUBLIC(void) xbt_mutex_destroy(xbt_mutex_t mutex); +XBT_PUBLIC void xbt_mutex_destroy(xbt_mutex_t mutex); /** @brief Thread condition data type (opaque object) * @hideinitializer */ +#ifdef __cplusplus +typedef simgrid::kernel::activity::ConditionVariableImpl* xbt_cond_t; +#else typedef struct s_smx_cond_* xbt_cond_t; +#endif /** @brief Creates a condition variable */ -XBT_PUBLIC(xbt_cond_t) xbt_cond_init(void); +XBT_PUBLIC xbt_cond_t xbt_cond_init(void); /** @brief Blocks onto the given condition variable */ -XBT_PUBLIC(void) xbt_cond_wait(xbt_cond_t cond, xbt_mutex_t mutex); +XBT_PUBLIC void xbt_cond_wait(xbt_cond_t cond, xbt_mutex_t mutex); /** @brief Blocks onto the given condition variable, but only for the given amount of time. * @return 0 on success, 1 on timeout */ -XBT_PUBLIC(int) xbt_cond_timedwait(xbt_cond_t cond, xbt_mutex_t mutex, double delay); +XBT_PUBLIC int xbt_cond_timedwait(xbt_cond_t cond, xbt_mutex_t mutex, double delay); /** @brief Signals the given mutex variable */ -XBT_PUBLIC(void) xbt_cond_signal(xbt_cond_t cond); +XBT_PUBLIC void xbt_cond_signal(xbt_cond_t cond); /** @brief Broadcasts the given mutex variable */ -XBT_PUBLIC(void) xbt_cond_broadcast(xbt_cond_t cond); +XBT_PUBLIC void xbt_cond_broadcast(xbt_cond_t cond); /** @brief Destroys the given mutex variable */ -XBT_PUBLIC(void) xbt_cond_destroy(xbt_cond_t cond); +XBT_PUBLIC void xbt_cond_destroy(xbt_cond_t cond); /** @} */