Logo AND Algorithmique Numérique Distribuée

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