Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
track all the useless void
[simgrid.git] / include / xbt / synchro_core.h
1 /* xbt/synchro_core.h -- Synchronization tools                              */
2 /* Usable in simulator, (or in real life when mixing with GRAS)             */
3
4 /* Copyright (c) 2009-2014. The SimGrid Team.
5  * All rights reserved.                                                     */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 /* splited away from synchro.h since we are used by dynar.h, and synchro.h uses dynar */
11
12
13 #ifndef _XBT_THREAD_H
14 #define _XBT_THREAD_H
15
16 #include <simgrid/simix.h>
17
18 #include "xbt/misc.h"           /* SG_BEGIN_DECL */
19 #include "xbt/function_types.h"
20
21 SG_BEGIN_DECL()
22
23 /** @addtogroup XBT_synchro
24  *  @brief XBT synchronization tools
25  * 
26  *  This section describes the XBT synchronization tools.
27  *  This is a portability layer (for windows and UNIX) of a pthread-like API. Nice, isn't it?
28  * 
29  *  @{
30  */
31
32 /** @brief Thread mutex data type (opaque object)
33  *  @hideinitializer
34  */
35 typedef struct s_smx_mutex_ *xbt_mutex_t;
36
37 /** @brief Creates a new mutex variable */
38 XBT_PUBLIC(xbt_mutex_t) xbt_mutex_init();
39
40 /** @brief Blocks onto the given mutex variable */
41 XBT_PUBLIC(void) xbt_mutex_acquire(xbt_mutex_t mutex);
42
43 /** @brief Tries to block onto the given mutex variable 
44  * Tries to lock a mutex, return 1 if the mutex is unlocked, else 0.
45  * This function does not block and wait for the mutex to be unlocked.
46  * \param mutex The mutex
47  * \return 1 - mutex free, 0 - mutex used
48  */
49 XBT_PUBLIC(int) xbt_mutex_try_acquire(xbt_mutex_t mutex);
50
51 /** @brief Releases the given mutex variable */
52 XBT_PUBLIC(void) xbt_mutex_release(xbt_mutex_t mutex);
53
54 /** @brief Destroyes the given mutex variable */
55 XBT_PUBLIC(void) xbt_mutex_destroy(xbt_mutex_t mutex);
56
57
58 /** @brief Thread condition data type (opaque object)
59  *  @hideinitializer
60  */
61 typedef struct s_smx_cond_ *xbt_cond_t;
62
63 /** @brief Creates a condition variable */
64 XBT_PUBLIC(xbt_cond_t) xbt_cond_init();
65
66 /** @brief Blocks onto the given condition variable */
67 XBT_PUBLIC(void) xbt_cond_wait(xbt_cond_t cond, xbt_mutex_t mutex);
68 /** @brief Blocks onto the given condition variable, but only for the given amount of time. a timeout exception is
69  *   raised if it was impossible to acquire it in the given time frame */
70 XBT_PUBLIC(void) xbt_cond_timedwait(xbt_cond_t cond, xbt_mutex_t mutex, double delay);
71 /** @brief Signals the given mutex variable */
72 XBT_PUBLIC(void) xbt_cond_signal(xbt_cond_t cond);
73 /** @brief Broadcasts the given mutex variable */
74 XBT_PUBLIC(void) xbt_cond_broadcast(xbt_cond_t cond);
75 /** @brief Destroys the given mutex variable */
76 XBT_PUBLIC(void) xbt_cond_destroy(xbt_cond_t cond);
77
78 #define XBT_BARRIER_SERIAL_PROCESS -1
79 typedef struct s_xbt_bar_ *xbt_bar_t;
80 XBT_PUBLIC(xbt_bar_t) xbt_barrier_init( unsigned int count);
81 XBT_PUBLIC(void) xbt_barrier_destroy(xbt_bar_t bar);
82 XBT_PUBLIC(int) xbt_barrier_wait(xbt_bar_t bar);
83
84 /** @} */
85
86 SG_END_DECL()
87 #endif                          /* _XBT_THREAD_H */