File: int.html

package info (click to toggle)
erlang-doc-html 1%3A10.b.1a-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 22,488 kB
  • ctags: 9,933
  • sloc: erlang: 505; ansic: 323; perl: 61; sh: 45; makefile: 39
file content (648 lines) | stat: -rw-r--r-- 18,281 bytes parent folder | download
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!-- This document was generated using DocBuilder 3.3.2 -->
<HTML>
<HEAD>
  <TITLE>int</TITLE>
  <SCRIPT type="text/javascript" src="../../../../doc/erlresolvelinks.js">
</SCRIPT>
  <STYLE TYPE="text/css">
<!--
    .REFBODY     { margin-left: 13mm }
    .REFTYPES    { margin-left: 8mm }
-->
  </STYLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#FF00FF"
      ALINK="#FF0000">
<!-- refpage -->
<CENTER>
<A HREF="http://www.erlang.se">
  <IMG BORDER=0 ALT="[Ericsson AB]" SRC="min_head.gif">
</A>
<H1>int</H1>
</CENTER>

<H3>MODULE</H3>
<DIV CLASS=REFBODY>
int
</DIV>

<H3>MODULE SUMMARY</H3>
<DIV CLASS=REFBODY>
Interpreter Interface.
</DIV>

<H3>DESCRIPTION</H3>
<DIV CLASS=REFBODY>

<P>The Erlang interpreter provides mechanisms for breakpoints and
stepwise execution of code. It is mainly intended to be used by
the <STRONG>Debugger</STRONG>, see Debugger User's Guide and
<CODE>debugger(3)</CODE>.
<P>From the shell, it is possible to:
<P>
<UL>

<LI>
Specify which modules should be interpreted.
</LI>


<LI>
Specify breakpoints.
</LI>


<LI>
Monitor the current status of all processes executing code
        in interpreted modules, also processes at other Erlang nodes.
</LI>


</UL>

<P>By <STRONG>attaching to</STRONG> a process executing interpreted code, it
is possible to examine variable bindings and order stepwise execution.
This is done by sending and receiving information to/from the process
via a third process, called the meta process. It is possible, but not
recommended, to implement your own attached process. See <CODE>int.erl</CODE>
for available functions and <CODE>dbg_ui_trace.erl</CODE> for possible
messages.
</DIV>

<H3>Breakpoints</H3>
<DIV CLASS=REFBODY>

<P>Breakpoints are specified on a line basis. When a process executing
code in an interpreted module reaches a breakpoint, it will stop.
This means that that a breakpoint must be set at an executable line,
i.e. a line of code containing an executable expression.
<P>A breakpoint have a status, a trigger action and may have a condition
associated with it. The status is either <STRONG>active</STRONG> or
<STRONG>inactive</STRONG>. An inactive breakpoint is ignored.
When a breakpoint is reached, the trigger action specifies if
the breakpoint should continue to be active (<STRONG>enable</STRONG>), if it
should become inactive (<STRONG>disable</STRONG>), or if it should be
removed (<STRONG>delete</STRONG>). A condition is a tuple <CODE>{Module,Name}</CODE>.
When the breakpoint is reached, <CODE>Module:Name(Bindings)</CODE> is
called. If this evaluates to <CODE>true</CODE>, execution will stop. If
this evaluates to <CODE>false</CODE>, the breakpoint is ignored.
<CODE>Bindings</CODE> contains the current variable bindings, use
<CODE>get_binding</CODE> to retrieve the value for a given variable.
<P>By default, a breakpoint is active, has trigger action enable and has
no condition associated with it. For more detailed information about
breakpoints, refer to Debugger User's Guide.
</DIV>

<H3>EXPORTS</H3>

<P><A NAME="i/1"><STRONG><CODE>i(AbsModule) -&#62; {module,Module} | error</CODE></STRONG></A><BR>
<A NAME="ni/1"><STRONG><CODE>ni(AbsModule) -&#62; {module,Module} | error</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>AbsModule = Module | File | [Module | File]</CODE></STRONG><BR>
<STRONG><CODE>Module = atom()</CODE></STRONG><BR>
<STRONG><CODE>File = string()</CODE></STRONG><BR>
<STRONG><CODE>Options = term()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Interprets the specified module. <CODE>i/1,2</CODE> interprets
         the module only at the current node. <CODE>ni/1,2</CODE> interprets
         the module at all known nodes.
<P>A module may be given by its module name (atom) or by its file
         name. If given by its module name, the object code
         <CODE>Module.beam</CODE> is searched for in the current path. The source
         code <CODE>Module.erl</CODE> is searched for first in the same directory
         as the object code, then in a <CODE>src</CODE> directory next to it.
<P>If given by its file name, the file name may include a path and
         the <CODE>.erl</CODE> extension may be omitted. The object code
         <CODE>Module.beam</CODE> is searched for first in the same directory as
         the source code, then in an <CODE>ebin</CODE> directory next to it, and
         then in the current path.
<P>
<TABLE CELLPADDING=4>
  <TR>
    <TD VALIGN=TOP><IMG ALT="Note!" SRC="note.gif"></TD>
    <TD>

<P>The interpreter needs both the source code and the object code,
         and the object code <STRONG>must</STRONG> include debug information.
         That is, only modules compiled with the option <CODE>debug_info</CODE>
         set can be interpreted.
             </TD>
  </TR>
</TABLE>

</DIV>

<P><A NAME="n/1"><STRONG><CODE>n(AbsModule) -&#62; ok</CODE></STRONG></A><BR>
<A NAME="nn/1"><STRONG><CODE>nn(AbsModule) -&#62; ok</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>AbsModule = Module | File | [Module | File]</CODE></STRONG><BR>
<STRONG><CODE>Module = atom()</CODE></STRONG><BR>
<STRONG><CODE>File = string()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Stops interpreting the specified module. <CODE>n/1</CODE> stops
         interpreting the node only at the current node. <CODE>nn/1</CODE> stops
         interpreting the module at all known nodes.
<P>As for <CODE>i/1</CODE> and <CODE>ni/1</CODE>, a module may be given by
         either its module name or its file name.
</DIV>

<P><A NAME="interpreted/0"><STRONG><CODE>interpreted() -&#62; [Module]</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Module = atom()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Returns a list with all interpreted modules.
</DIV>

<P><A NAME="file/1"><STRONG><CODE>file(Module) -&#62; File | {error,not_loaded}</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Module = atom()</CODE></STRONG><BR>
<STRONG><CODE>File = string()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Returns the source code file name <CODE>File</CODE> for an interpreted
         module <CODE>Module</CODE>.
</DIV>

<P><A NAME="interpretable/1"><STRONG><CODE>interpretable(AbsModule) -&#62; true | {error,Reason}</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>AbsModule = Module | File</CODE></STRONG><BR>
<STRONG><CODE>Module = atom()</CODE></STRONG><BR>
<STRONG><CODE>File = string()</CODE></STRONG><BR>
<STRONG><CODE>Reason = no_src | no_beam | no_debug_info | badarg</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Checks if a module is possible to interpret. The module can be
         given by its module name <CODE>Module</CODE> or its file name
         <CODE>File</CODE>.
<P>The function returns <CODE>true</CODE> if both source code and object
         code for the module is found, and the module has been compiled
         with the option <CODE>debug_info</CODE> set.
<P>The function returns <CODE>{error,Reason}</CODE> where <CODE>Reason</CODE> is
         <CODE>no_src</CODE> if no source code is found, <CODE>no_beam</CODE> if no
         object code is found, <CODE>no_debug_info</CODE> if the module has not
         been compiled with the option <CODE>debug_info</CODE> set, or
         <CODE>badarg</CODE> if <CODE>AbsModule</CODE> does not exist.
</DIV>

<P><A NAME="auto_attach/0"><STRONG><CODE>auto_attach() -&#62; false | {Flags,Function}</CODE></STRONG></A><BR>
<A NAME="auto_attach/1"><STRONG><CODE>auto_attach(false)</CODE></STRONG></A><BR>
<A NAME="auto_attach/2"><STRONG><CODE>auto_attach(Flags, Function)</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Flags = [init | break | exit]</CODE></STRONG><BR>
<STRONG><CODE>Function = {Module,Name,Args}</CODE></STRONG><BR>
<STRONG><CODE>Module = Name = atom()</CODE></STRONG><BR>
<STRONG><CODE>Args = [term()]</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Get and set when and how to automatically attach to a process
         executing code in interpreted modules. <CODE>false</CODE> means never
         attach, this is the default. Otherwise automatic attach is
         defined by a list of flags and a function. The following flags
         may be specified:
<P>
<UL>

<LI>
<CODE>init</CODE> - attach when a process for the very first time
         calls an interpreted function.
</LI>


<LI>
<CODE>break</CODE> - attach whenever a process reaches a
         breakpoint.
</LI>


<LI>
<CODE>exit</CODE> - attach when a process terminates.
</LI>


</UL>

<P>When the specified event occurs, the function <CODE>Function</CODE>
         will be called as:
<PRE>
spawn(Module, Name, [Pid | Args])
        
</PRE>

<P>The resulting process can attach to, i.e. send commands to and
         receive messages from, the interpreted process, see above.
</DIV>

<P><A NAME="stack_trace/0"><STRONG><CODE>stack_trace() -&#62; Flag</CODE></STRONG></A><BR>
<A NAME="stack_trace/1"><STRONG><CODE>stack_trace(Flag)</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Flag = all | no_tail | false</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Get and set how to save call frames in the stack. This makes it
         possible to inspect the call chain of a process.
<P>
<UL>

<LI>
<CODE>all</CODE> - save all call frames. This is the default.
         
</LI>


<LI>
<CODE>no_tail</CODE> - save all call frames, except for tail
         recursive calls. This option consumes less memory and may be
         necessary to use for processes with long lifetimes and many
         tail recursive calls.
</LI>


<LI>
<CODE>false</CODE> - do not save call frames.
</LI>


</UL>

</DIV>

<P><A NAME="break/2"><STRONG><CODE>break(Module, Line) -&#62; ok | {error,break_exists}</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Module = atom()</CODE></STRONG><BR>
<STRONG><CODE>Line = integer()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Creates a breakpoint at <CODE>Line</CODE> in <CODE>Module</CODE>.
</DIV>

<P><A NAME="delete_break/2"><STRONG><CODE>delete_break(Module, Line) -&#62; ok</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Module = atom()</CODE></STRONG><BR>
<STRONG><CODE>Line = integer()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Deletes the breakpoint located at <CODE>Line</CODE> in <CODE>Module</CODE>.
        
</DIV>

<P><A NAME="break_in/3"><STRONG><CODE>break_in(Module, Name, Arity) -&#62; ok
        | {error,function_not_found}</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Module = Name = atom()</CODE></STRONG><BR>
<STRONG><CODE>Function = atom()</CODE></STRONG><BR>
<STRONG><CODE>Arity = integer()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Create a breakpoint at the first line of every clause of 
         the <CODE>Module:Function/Arity</CODE> function.

</DIV>

<P><A NAME="del_break_in/3"><STRONG><CODE>del_break_in(Module, Name, Arity) -&#62; ok
        | {error,function_not_found}</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Module = Name = atom()</CODE></STRONG><BR>
<STRONG><CODE>Arity = integer()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Delete the breakpoints at the first line of every clause of 
         the <CODE>Module:Function/Arity</CODE> function.
        
</DIV>

<P><A NAME="no_break/0"><STRONG><CODE>no_break() -&#62; ok</CODE></STRONG></A><BR>
<A NAME="no_break/1"><STRONG><CODE>no_break(Module) -&#62; ok</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY>

<P>Deletes all breakpoints, or all breakpoints in <CODE>Module</CODE>.
</DIV>

<P><A NAME="disable_break/2"><STRONG><CODE>disable_break(Module, Line) -&#62; ok</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Module = atom()</CODE></STRONG><BR>
<STRONG><CODE>Line = integer()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Makes the breakpoint at <CODE>Line</CODE> in <CODE>Module</CODE> inactive.
        
</DIV>

<P><A NAME="enable_break/2"><STRONG><CODE>enable_break(Module, Line) -&#62; ok</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Module = atom()</CODE></STRONG><BR>
<STRONG><CODE>Line = integer()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Makes the breakpoint at <CODE>Line</CODE> in <CODE>Module</CODE> active.
</DIV>

<P><A NAME="action_at_break/3"><STRONG><CODE>action_at_break(Module, Line, Action) -&#62; ok</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Module = atom()</CODE></STRONG><BR>
<STRONG><CODE>Line = integer()</CODE></STRONG><BR>
<STRONG><CODE>Action = enable | disable | delete</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Set the trigger action of the breakpoint at <CODE>Line</CODE> in
         <CODE>Module</CODE> to <CODE>Action</CODE>.
</DIV>

<P><A NAME="test_at_break/3"><STRONG><CODE>test_at_break(Module, Line, Function) -&#62; ok</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Module = atom()</CODE></STRONG><BR>
<STRONG><CODE>Line = integer()</CODE></STRONG><BR>
<STRONG><CODE>Function = {Module,Name}</CODE></STRONG><BR>
<STRONG><CODE>Module = Name = atom()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Set the condition of the breakpoint at <CODE>Line</CODE> in
         <CODE>Module</CODE> to <CODE>Function</CODE>.
        
</DIV>

<P><A NAME="get_binding/2"><STRONG><CODE>get_binding(Var, Bindings) -&#62; {value,Value} | unbound</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Var = atom()</CODE></STRONG><BR>
<STRONG><CODE>Bindings = term()</CODE></STRONG><BR>
<STRONG><CODE>Value = term()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Retrieve the binding of <CODE>Variable</CODE>. This function is
         intended to be used by a breakpoint condition function.
</DIV>

<P><A NAME="all_breaks/0"><STRONG><CODE>all_breaks() -&#62; [Break]</CODE></STRONG></A><BR>
<A NAME="all_breaks/1"><STRONG><CODE>all_breaks(Module) -&#62; [Break]</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Break = {Point,Options}</CODE></STRONG><BR>
<STRONG><CODE>Point = {Module,Line}</CODE></STRONG><BR>
<STRONG><CODE>Module = atom()</CODE></STRONG><BR>
<STRONG><CODE>Line = int()</CODE></STRONG><BR>
<STRONG><CODE>Options = [Status,Trigger,null,Cond|]</CODE></STRONG><BR>
<STRONG><CODE>Status = active | inactive</CODE></STRONG><BR>
<STRONG><CODE>Trigger = enable | disable | delete</CODE></STRONG><BR>
<STRONG><CODE>Cond = null | Function</CODE></STRONG><BR>
<STRONG><CODE>Function = {Module,Name}</CODE></STRONG><BR>
<STRONG><CODE>Name = atom()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Gets all breakpoints, or all breakpoints in <CODE>Module</CODE>.
</DIV>

<P><A NAME="snapshot/0"><STRONG><CODE>snapshot() -&#62; [Snapshot]</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Snapshot = {Pid, Function, Status, Info}</CODE></STRONG><BR>
<STRONG><CODE>Pid = pid()</CODE></STRONG><BR>
<STRONG><CODE>Function = {Module,Name,Args}</CODE></STRONG><BR>
<STRONG><CODE>Module = Name = atom()</CODE></STRONG><BR>
<STRONG><CODE>Args = [term()]</CODE></STRONG><BR>
<STRONG><CODE>Status = idle | running | waiting | break | exit
         | no_conn</CODE></STRONG><BR>
<STRONG><CODE>Info = {} | {Module,Line} | ExitReason</CODE></STRONG><BR>
<STRONG><CODE>Line = integer()</CODE></STRONG><BR>
<STRONG><CODE>ExitReason = term()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Gets information about all processes executing interpreted code.
        
<P>
<UL>

<LI>
<CODE>Pid</CODE> - process identifier.
</LI>


<LI>
<CODE>Function</CODE> - first interpreted function called by
         the process.
</LI>


<LI>
<CODE>Status</CODE> - current status of the process.
</LI>


<LI>
<CODE>Info</CODE> - additional information.
</LI>


</UL>

<P><CODE>Status</CODE> is one of:
<P>
<UL>

<LI>
<CODE>idle</CODE> - the process is no longer executing interpreted
         code. <CODE>Info={}</CODE>.
</LI>


<LI>
<CODE>running</CODE> - the process is running. <CODE>Info={}</CODE>.
         
</LI>


<LI>
<CODE>waiting</CODE> - the process is waiting at a <CODE>receive</CODE>.
         <CODE>Info={}</CODE>.
</LI>


<LI>
<CODE>break</CODE> - process execution has been stopped, normally
         at a breakpoint. <CODE>Info={Module,Line}</CODE>.
</LI>


<LI>
<CODE>exit</CODE> - the process has terminated.
         <CODE>Info=ExitReason</CODE>.
</LI>


<LI>
<CODE>no_conn</CODE> - the connection is down to the node where
         the process is running. <CODE>Info={}</CODE>.
</LI>


</UL>

</DIV>

<P><A NAME="clear/0"><STRONG><CODE>clear() -&#62; ok</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY>

<P>Clears information about processes executing interpreted code
         by removing all information about terminated processes.
</DIV>

<P><A NAME="continue/1"><STRONG><CODE>continue(Pid) -&#62; ok | {error,not_interpreted}</CODE></STRONG></A><BR>
<A NAME="continue/3"><STRONG><CODE>continue(X,Y,Z) -&#62; ok | {error,not_interpreted}</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Pid = pid()</CODE></STRONG><BR>
<STRONG><CODE>X = Y = Z = integer()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Resume process execution for <CODE>Pid</CODE>, or for
         <CODE>c:pid(X,Y,Z)</CODE>.
</DIV>

<H3>AUTHORS</H3>
<DIV CLASS=REFBODY>
Gunilla Arendt - support@erlang.ericsson.se<BR>

</DIV>
<CENTER>
<HR>
<SMALL>debugger 2.3<BR>
Copyright &copy; 1991-2004
<A HREF="http://www.erlang.se">Ericsson AB</A><BR>
</SMALL>
</CENTER>
</BODY>
</HTML>