Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use standard C++ mutex.
[simgrid.git] / include / xbt / xbt_os_thread.h
1 /* xbt/xbt_os_thread.h -- Thread portability layer                          */
2
3 /* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #ifndef XBT_OS_THREAD_H
9 #define XBT_OS_THREAD_H
10
11 #include <xbt/base.h>
12 #include <xbt/function_types.h>
13
14 SG_BEGIN_DECL()
15
16 /** @addtogroup XBT_thread
17  *  @brief Thread portability layer
18  *
19  *  This section describes the thread portability layer. It defines types and functions very close to the pthread API,
20  *  but it's portable to windows too.
21  *
22  *  @{
23  */
24
25 /** @brief Thread mutex data type (opaque structure) */
26 typedef struct xbt_os_mutex_ *xbt_os_mutex_t;
27 XBT_PUBLIC xbt_os_mutex_t xbt_os_mutex_init(void);
28 XBT_PUBLIC void xbt_os_mutex_acquire(xbt_os_mutex_t mutex);
29 XBT_PUBLIC void xbt_os_mutex_release(xbt_os_mutex_t mutex);
30 XBT_PUBLIC void xbt_os_mutex_destroy(xbt_os_mutex_t mutex);
31
32 /** @} */
33
34 SG_END_DECL()
35 #endif /* XBT_OS_THREAD_H */