1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
<html><head><title>XLISP baktrace</title>
<link rel="stylesheet" type="text/css" href="reference.css">
</head>
<body>
<a href="../start.htm">Nyquist / XLISP 2.0</a> -
<a href="../manual/contents.htm">Contents</a> |
<a href="../tutorials/tutorials.htm">Tutorials</a> |
<a href="../examples/examples.htm">Examples</a> |
<a href="reference-index.htm">Reference</a>
<hr>
<h1>baktrace</h1>
<hr>
<p><table cellpadding="0" cellspacing="0" style="margin-left:10px"><tbody>
<tr valign="top">
<td><nobr>Type:</nobr></td>
<td><nobr> - </nobr></td>
<td width="100%"><nobr>function (subr)</nobr></td>
</tr>
<tr valign="top">
<td><nobr>Source:</nobr></td>
<td><nobr> - </nobr></td>
<td width="100%"><nobr>xldbug.c, xlsys.c</nobr></td>
</tr>
</tbody></table></p>
<h2>Syntax</h2>
<p><div class="box">
<dl>
<dt>(<b>baktrace</b> [<i>level</i>])</dt>
<dd><i>level</i> - an optional integer expression<br>
returns - <a href="nil.htm">NIL</a></dd>
</dl>
</div></p>
<h2>Description</h2>
<p> The 'baktrace' function is used to examine the system execution stack
from within the
<nobr><a href="../manual/xlisp.htm#break-loop">Break Loop</a>.</nobr> It
shows the nested forms that got the system to the current state. The
<nobr><a href="../manual/xlisp.htm#break-loop">Break Loop</a></nobr> can be
entered by a system error, or by the Nyquist/XLISP
<a href="error.htm">error</a>, <a href="cerror.htm">cerror</a>, or
<a href="break.htm">break</a> functions. <nobr>If the</nobr> 'levels'
parameter is not specified, all the nested forms will be shown back to the
main loop form that started the execution. <nobr>If 'level'</nobr> is
specified the most recent 'level' nested forms will be shown.</p>
<h2>Examples</h2>
<pre class="example">
(defun out (x)
(print x)
(mid 99))
(defun mid (x)
(print x)
(in 999))
(defun in (x)
(print x)
(break "in" x)) <font color="#008844">; break</font>
> (out 9)
9
99
999
<font color="#AA0000">break: in - 999</font>
<font color="#AA0000">if continued: return from BREAK</font>
1> (baktrace) <font color="#008844">; the 1 before the > indicates a break loop</font>
Function: #<Subr-BAKTRACE: #9af6688>
Function: #<Subr-BREAK: #9af6778>
Arguments:
"in"
999
Function: #<Closure-IN: #9b99574>
Arguments:
999
Function: #<Closure-MID: #9b99670>
Arguments:
99
Function: #<Closure-OUT: #9b99778>
Arguments:
9
NIL
</pre>
<p>See also:</p>
<ul>
<li><nobr>Contents → <a href="../manual/contents.htm#debugging-and-error-handling">Debugging and Error Handling</a></nobr></li>
<li><nobr>XLISP 2.0 Manual → <a href="../manual/xlisp.htm#break-loop">Break Loop</a></nobr></li>
</ul>
<p><nobr> <a href="#top">Back to Top</nobr></a></p>
<hr>
<a href="../start.htm">Nyquist / XLISP 2.0</a> -
<a href="../manual/contents.htm">Contents</a> |
<a href="../tutorials/tutorials.htm">Tutorials</a> |
<a href="../examples/examples.htm">Examples</a> |
<a href="reference-index.htm">Reference</a>
</body></html>
|