~ubuntu-branches/ubuntu/quantal/simgrid/quantal

« back to all changes in this revision

Viewing changes to doc/html/group__XBT__error.html

  • Committer: Package Import Robot
  • Author(s): Lucas Nussbaum, Martin Quinson, Lucas Nussbaum
  • Date: 2012-06-09 16:24:44 UTC
  • mfrom: (10.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20120609162444-xook34f3d6qy5ixj
Tags: 3.7.1-1
[ Martin Quinson ]
* debian/copyright: update FSF address (thanks lintian for noticing)

[ Lucas Nussbaum ]
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
<html xmlns="http://www.w3.org/1999/xhtml">
3
3
<head>
4
4
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
5
 
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
6
5
<title>SimGrid: Assert macro familly</title>
7
 
 
8
6
<link href="tabs.css" rel="stylesheet" type="text/css"/>
9
 
<link href="doxygen.css" rel="stylesheet" type="text/css" />
10
 
 
11
 
 
12
 
 
 
7
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
13
8
<link href="simgrid.css" rel="stylesheet" type="text/css">
14
9
</head>
15
10
<body>
16
 
<div id="top"><!-- do not remove this div! -->
17
 
 
18
 
 
 
11
<!-- Generated by Doxygen 1.7.4 -->
 
12
<div id="top">
19
13
<div id="titlearea">
20
14
<table cellspacing="0" cellpadding="0">
21
15
 <tbody>
22
16
 <tr style="height: 56px;">
23
 
  
24
 
  
25
17
  <td style="padding-left: 0.5em;">
26
 
   <div id="projectname">SimGrid
27
 
   &#160;<span id="projectnumber">3.7</span>
28
 
   </div>
 
18
   <div id="projectname">SimGrid&#160;<span id="projectnumber">3.7.1</span></div>
29
19
   <div id="projectbrief">Scalable simulation of distributed systems</div>
30
20
  </td>
31
 
  
32
 
  
33
 
  
34
21
 </tr>
35
22
 </tbody>
36
23
</table>
37
24
</div>
38
 
 
39
 
<!-- Generated by Doxygen 1.7.6.1 -->
40
25
  <div id="navrow1" class="tabs">
41
26
    <ul class="tablist">
42
27
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
65
50
  <li> <a href="group__API__index.html"><span>Full Index</span></a></li>
66
51
  <li class="current"> <a href="group__XBT__API.html"><span>XBT</span></a></li>
67
52
  <li> <a href="group__MSG__API.html"><span>MSG</span></a></li>
 
53
  <li> <a href="group__SIMIX__API.html"><span>SIMIX</span></a></li>
68
54
  <li> <a href="group__GRAS__API.html"><span>GRAS</span></a></li>
69
55
  <li> <a href="group__AMOK__API.html"><span>AMOK</span></a></li>
70
56
  <li> <a href="group__SMPI__API.html"><span>SMPI</span></a></li>
99
85
<a href="#define-members">Defines</a>  </div>
100
86
  <div class="headertitle">
101
87
<div class="title">Assert macro familly</div>  </div>
102
 
<div class="ingroups"><a class="el" href="group__XBT__grounding.html">Grounding features</a></div></div><!--header-->
 
88
<div class="ingroups"><a class="el" href="group__XBT__grounding.html">Grounding features</a></div></div>
103
89
<div class="contents">
104
90
 
105
91
<p>Those are the SimGrid version of the good ol' assert macro.  
125
111
<div class="memproto">
126
112
      <table class="memname">
127
113
        <tr>
128
 
          <td class="memname">#define <a class="el" href="group__XBT__error.html#ga9bf4916de59dbf2c5bc790e85df7c189">xbt_die</a></td>
 
114
          <td class="memname">#define xbt_die</td>
129
115
          <td>(</td>
130
116
          <td class="paramtype">&#160;</td>
131
117
          <td class="paramname"><em>...</em></td><td>)</td>
135
121
</div>
136
122
<div class="memdoc">
137
123
<b>Value:</b><div class="fragment"><pre class="fragment"><span class="keywordflow">do</span> {                                          \
138
 
    XBT_LOG_EXTERNAL_CATEGORY(xbt);             \
139
 
    XBT_CCRITICAL(xbt, __VA_ARGS__);            \
140
 
    xbt_abort();                                \
 
124
    <a class="code" href="group__XBT__log.html#ga7db05649e5c3c7aba06909409e470143">XBT_LOG_EXTERNAL_CATEGORY</a>(xbt);             \
 
125
    <a class="code" href="group__XBT__log.html#ga4b5b9ad4a5086e2e9bd2ee47b3c03c9c" title="Log an event at the CRITICAL priority on the specified category with these args (CCRITICALn exists fo...">XBT_CCRITICAL</a>(xbt, __VA_ARGS__);            \
 
126
    <a class="code" href="group__XBT__error.html#gaca8531c4c752e94c638c030c80528021" title="Kill the program in silence.">xbt_abort</a>();                                \
141
127
  } <span class="keywordflow">while</span> (0)
142
128
</pre></div>
143
129
<p>Kill the program with an error message. </p>
144
 
<dl class="params"><dt><b>Parameters:</b></dt><dd>
 
130
<dl><dt><b>Parameters:</b></dt><dd>
145
131
  <table class="params">
146
132
    <tr><td class="paramname">...</td><td>a format string and its arguments</td></tr>
147
133
  </table>
152
138
 
153
139
</div>
154
140
</div>
155
 
</div><!-- contents -->
 
141
</div>
156
142
<p>
157
143
<hr>
158
144
 
163
149
Back to the main Simgrid Documentation page</b></a>
164
150
</td>
165
151
<td align=middle>
166
 
<small>The version of <a href="http://simgrid.gforge.inria.fr">SimGrid</a> documented here is v3.7.<br/>
 
152
<small>The version of <a href="http://simgrid.gforge.inria.fr">SimGrid</a> documented here is v3.7.1.<br/>
167
153
Documentation of other versions can be found in their respective
168
154
archive files (directory doc/html).
169
155
</td>