Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
b61583c9173bf2e09b88fe227bbc281233b08475
[simgrid.git] / doc / doxygen / module-xbt.doc
1 /** @addtogroup XBT_API
2
3    The XBT functionalities fall into several categories:
4     - Portability support
5       - \ref XBT_syscall
6       - \ref XBT_str
7       - \ref XBT_file
8     - Grounding features
9       - \ref XBT_ex
10       - \ref XBT_ex_c
11       - \ref XBT_log
12       - \ref XBT_error
13       - \ref XBT_config
14       - \ref XBT_mallocator
15       - \ref XBT_cunit
16     - Data structures
17       - \ref XBT_dynar
18       - \ref XBT_dict
19       - \ref XBT_set
20         Data are associated to both an ID (0(1) search) and a name
21       - \ref XBT_fifo
22       - \ref XBT_swag
23       - \ref XBT_heap
24       - @ref xbt_strbuff
25     - \ref XBT_misc
26       - \ref XBT_graph
27
28   @{ */
29    /** @defgroup XBT_grounding   Grounding features */
30    /** @defgroup XBT_adt         Usual data structures */
31    /** @defgroup XBT_misc        Miscellaneous */
32 /** @} */
33
34
35 ########################################################################
36
37
38 /** @addtogroup XBT_grounding
39
40   Grounding features are the basement of SimGrid. You'll find portable (and
41   secure) wrappers to the malloc-like functions, logging support, error
42   reporting features, etc.
43
44   @{ */
45
46      /** @defgroup XBT_syscall Malloc and friends */
47      /** @defgroup XBT_str     String related functions */
48      /** @defgroup XBT_ex     Exception support (C++) */
49      /** @defgroup XBT_ex_c   Exception support (C)   */
50      /** @defgroup XBT_log    Logging support */
51      /** @defgroup XBT_error  Assert macro familly */
52      /** @defgroup XBT_config Configuration support */
53      /** @defgroup XBT_mallocator Mallocators */
54      /** @defgroup XBT_cunit      Unit testing support */
55 /** @} */
56
57
58
59
60 ########################################################################
61
62 /** @addtogroup XBT_adt
63
64   Here are the basic data containers that every C programmer rewrites one day.
65   You won't need to do so yourself, you lucky one, because we did it for you.
66   However, if you are programming in C++ you might want to use C++ containers
67   instead.
68
69   @{ */
70      /** @defgroup XBT_dynar  Dynar: generic dynamic array */
71      /** @defgroup XBT_dict   Dict: generic dictionnary */
72      /** @defgroup XBT_fifo   Fifo: generic workqueue */
73      /** @defgroup XBT_swag   Swag: O(1) set datatype */
74      /** @defgroup XBT_heap Heap: generic heap data structure */
75 /** @} */
76
77
78 ########################################################################
79
80 /** @addtogroup XBT_misc
81
82   Here are several general purposes library components designed specially
83   for you, you lucky one.
84
85
86   @{ */
87      /** @defgroup XBT_graph General purpose graph library */
88      /** @defgroup XBT_parmap Parallel map */    
89      /** @defgroup XBT_synchro Simulated Synchronization */     
90      /** @defgroup XBT_thread Thread stuff */   
91      /** @defgroup XBT_context Portable context implementation */               
92      /** @defgroup XBT_replay Replay */
93 /** @} */ 
94
95 /* ************************* *
96  * * PORTABILITY-INTERNALS * * (not included in documentation)
97  * ************************* */
98
99  /** \addtogroup XBT_context Portable context implementation
100   *  \brief Contexts are a higher level system than <tt>setjump/longjmp</tt>
101   *  for non-preemptible threads.
102   *
103   *  You shouldn't use it directly since it is merely intended to ease the
104   *  implementation of the several programmation environment of the
105   *  SimGrid toolkit (namely, \ref MSG_API and \ref SMPI_API).
106   *
107   *  You should use those environments instead.
108   */
109