Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipse-dev] question on article "How to write an eclipse debugger"

I find that sometimes, the first time I attempt to connect, it fails. I 
believe it's just a timing problem on startup, since subsequent attempts 
seem to work.

Darin




Yan Chen <ychen5@xxxxxxxxxxxx> 
Sent by: eclipse-dev-admin@xxxxxxxxxxx
09/30/2004 01:32 PM
Please respond to
eclipse-dev


To
eclipse-dev@xxxxxxxxxxx
cc

Subject
[eclipse-dev] question on article "How to write an eclipse debugger"






Hi, all. I have a problem with running the example provided by the
Eclipse Corner Article "How to write an Eclipse Debugger".

when I tried to debug the pda example program, I got error of "Unable to
connect to PDA VM".

I look at the source of perl script and found program stop at

sub start_debugger {

.............

my $mainsock = new IO::Socket::INET (LocalHost => '127.0.0.1',
                                   LocalPort => $debugport,
                                   Listen    => 1,
                                   Proto     => 'tcp',
                                   Reuse     => 1,
                                  );
 
# Program runtime can only get here 
 
$debugsock = $mainsock->accept();

........................
}

I am not familiar with perl, so Does anyone has the same problem with me
and know the solution, Please let me know, thanks a lot!!!


Johnny

_______________________________________________
eclipse-dev mailing list
eclipse-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe 
from this list, visit
http://dev.eclipse.org/mailman/listinfo/eclipse-dev




Back to the top