Home > Archive > Visual Studio > March 2005 > remote debugging
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| Larry Waibel 2005-03-09, 4:00 pm |
| I'm trying to setup to do remote debugging in Visual Studio 6.0. How do I
get the input/output for the program to be on the host system instead of the
remote one? I want to have the program running on the headless target but
control the debugging and console I/O on the host. Is this possible?
Thanks!
| |
|
| Console i/o happens on the machine that is running the program that does the
console i/o.
The host machine runs the debugger, which communicates with a little program
MSVCMON.EXE on the remote machine. The MSVCMON.EXE program launches the
program you are debugging on the remote machine, which is where console i/o
occurs: on the remote machine.
"Larry Waibel" <lwaibel@no-spam-cox.net> wrote in message
news:VA.00000258.0083b116@no-spam-cox.net...
> I'm trying to setup to do remote debugging in Visual Studio 6.0. How do I
> get the input/output for the program to be on the host system instead of
the
> remote one? I want to have the program running on the headless target but
> control the debugging and console I/O on the host. Is this possible?
> Thanks!
>
| |
| Larry Waibel 2005-03-09, 8:59 pm |
| With other debuggers I've used, all the I/O is redirected back to the host
machine so you don't have to jump back and forth to operate them both and so
that the remote system doesn't need to have a display or keyboard. Guess I
was hoping for that here as well.
In article <#PWCACPJFHA.3076@tk2msftngp13.phx.gbl>, Jim wrote:
> From: "Jim" <jimbo99@elephantsrus.com>
> Subject: Re: remote debugging
> Date: Wed, 9 Mar 2005 13:38:28 -0800
> Newsgroups: microsoft.public.vstudio.general
>
> Console i/o happens on the machine that is running the program that does the
> console i/o.
>
> The host machine runs the debugger, which communicates with a little program
> MSVCMON.EXE on the remote machine. The MSVCMON.EXE program launches the
> program you are debugging on the remote machine, which is where console i/o
> occurs: on the remote machine.
>
> "Larry Waibel" <lwaibel@no-spam-cox.net> wrote in message
> news:VA.00000258.0083b116@no-spam-cox.net...
> the
>
|
|
|
|
|