dbg question

Ulf Wiger ulf.wiger@REDACTED
Sun Feb 1 11:06:35 CET 2004


Actually, is_pid/1 will only tell you that the type of
Pid is pid(). Use is_process_alive(Pid) to find out if
it is still there.

Eshell V5.3  (abort with ^G)
1> Pid = spawn(fun() -> exit(normal) end).
<0.31.0>
2> is_pid(Pid).
true
3> is_process_alive(Pid).
false
4> Pid2 = spawn(fun() -> timer:sleep(30000) end).
<0.35.0>
5> is_process_alive(Pid2).
true
6>

On Sun, 01 Feb 2004 01:39:12 +0100, Robert Balogh <baloghrobi@REDACTED> 
wrote:

> Hi Vance,
>
> Thanks for your advice. I check the pid, and it is true. Look:
>
> Erlang (BEAM) emulator version 5.3 [threads:0]
>
> Eshell V5.3  (abort with ^G)
> (axd301@REDACTED)1> Pid = dbg:trace_client(ip, {"cp1-1", 4711}).
> <0.37.0>
> (axd301@REDACTED)2> is_pid(Pid).
> true
> (axd301@REDACTED)3> dbg:stop_trace_client(Pid).
>
> =ERROR REPORT==== 1-Feb-2004::01:36:23 ===
> Error in process <0.30.0> on node 'axd301@REDACTED' with exit value: 
> {badarg,[{erla
> ng,exit,[{badpid,<0.37.0>},abnormal]},{dbg,stop_trace_client,1},{erl_eval,do_app
> ly,5},{shell,eval_loop,2}]}
>
> ** exited: {badarg,[{erlang,exit,[{badpid,<0.37.0>},abnormal]},
>                     {dbg,stop_trace_client,1},
>                     {erl_eval,do_apply,5},
>                     {shell,eval_loop,2}]} **
> (axd301@REDACTED)4>
>
>
> But I can not to stop this process :-(.
>
> Thanks four your help,
>
> regards,
> /Robi
>
>
>> From: Vance Shipley <vances@REDACTED>
>> To: Robert Balogh <baloghrobi@REDACTED>
>> Subject: Re: dbg question
>> Date: Sat, 31 Jan 2004 17:01:17 -0500
>>
>> Robi,
>>
>> Make sure the process is still there:
>>
>> (axd301@REDACTED)1> Pid = dbg:trace_client(ip, {"cp1-1", 4711}).
>> <0.37.0>
>> (axd301@REDACTED)2> is_pid(Pid).
>> true
>>
>> If it doesn't say "true" then it is gone.  If it does say true
>> I don't know.
>>
>> 	-Vance
>>
>
> _________________________________________________________________
> The new MSN 8: advanced junk mail protection and 2 months FREE* 
> http://join.msn.com/?page=features/junkmail
>



-- 
Ulf Wiger




More information about the erlang-questions mailing list