X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6f48d1a65eeb69ebae17feb1d714db4a60764a51..328fd0722b099d114c3ee91be6ce4b4feeb62a9c:/include/xbt/synchro_core.h diff --git a/include/xbt/synchro_core.h b/include/xbt/synchro_core.h index 9f94e82b3c..6a54d5a5be 100644 --- a/include/xbt/synchro_core.h +++ b/include/xbt/synchro_core.h @@ -1,8 +1,6 @@ -/* xbt/synchro_core.h -- Synchronization tools */ -/* Usable in simulator, (or in real life when mixing with GRAS) */ +/* xbt/synchro_core.h -- Simulated synchronization */ -/* Copyright (c) 2009-2014. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2009-2016. 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. */ @@ -13,6 +11,8 @@ #ifndef _XBT_THREAD_H #define _XBT_THREAD_H +#include + #include "xbt/misc.h" /* SG_BEGIN_DECL */ #include "xbt/function_types.h" @@ -20,18 +20,18 @@ SG_BEGIN_DECL() /** @addtogroup XBT_synchro * @brief XBT synchronization tools - * - * This section describes the XBT synchronization tools. - * This is a portability layer (for windows and UNIX) of a pthread-like API. Nice, isn't it? - * + * + * This section describes the simulated synchronization mechanisms, + * that you can use in your simulation without deadlocks. See @ref + * faq_MIA_thread_synchronization for details. + * * @{ */ - /** @brief Thread mutex data type (opaque object) * @hideinitializer */ -typedef struct s_xbt_mutex_ *xbt_mutex_t; +typedef struct s_smx_mutex_ *xbt_mutex_t; /** @brief Creates a new mutex variable */ XBT_PUBLIC(xbt_mutex_t) xbt_mutex_init(void); @@ -57,7 +57,7 @@ XBT_PUBLIC(void) xbt_mutex_destroy(xbt_mutex_t mutex); /** @brief Thread condition data type (opaque object) * @hideinitializer */ -typedef struct s_xbt_cond_ *xbt_cond_t; +typedef struct s_smx_cond_ *xbt_cond_t; /** @brief Creates a condition variable */ XBT_PUBLIC(xbt_cond_t) xbt_cond_init(void);