Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
41018add
Commit
41018add
authored
Feb 27, 2003
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 27, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed no longer needed UseXTerm internal variable.
parent
b2f079ba
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
51 deletions
+8
-51
debugger.sgml
documentation/debugger.sgml
+7
-39
intvar.h
programs/winedbg/intvar.h
+1
-2
winedbg.c
programs/winedbg/winedbg.c
+0
-10
No files found.
documentation/debugger.sgml
View file @
41018add
...
...
@@ -1176,22 +1176,10 @@ set $BreakAllThreadsStartup = 1
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><varname>UseXTerm</varname></term>
<listitem>
<para>
Set to <literal>TRUE</literal> if the debugger uses
its own <command>xterm</command> window for console
input/output. Set to <literal>FALSE</literal> if
the debugger uses the current Unix console for
input/output
</para>
</listitem>
</varlistentry>
</variablelist>
<para>
Those last
3
variables are jointly used in two generic ways:
Those last
2
variables are jointly used in two generic ways:
</para>
<orderedlist>
...
...
@@ -1200,11 +1188,13 @@ set $BreakAllThreadsStartup = 1
<programlisting>
ConChannelMask = DBG_CHN_MESG (1)
StdChannelMask = 0
UseXTerm = 1
</programlisting>
<para>
In this case, all input/output goes into a specific
<command>xterm</command> window (but all debug
In this case, all input/output goes into the
debugger's console (either the standard unix console
if winedbg is started from the command line, or a
specific windowed-console if the debugger is started
upon an exception in a running program. All debug
messages <function>TRACE</function>,
<function>WARN</function>... still goes to tty where
wine is run from).
...
...
@@ -1212,38 +1202,16 @@ UseXTerm = 1
</listitem>
<listitem>
<para>
t
o have all input/output go into the tty where Wine
T
o have all input/output go into the tty where Wine
was started from (to be used in a X11-free
environment)
</para>
<screen>
ConChannelMask = 0
StdChannelMask = DBG_CHN_MESG (1)
UseXTerm = 1
</screen>
</listitem>
</orderedlist>
<para>
Those variables also allow, for example for debugging
purposes, to use:
</para>
<screen>
ConChannelMask = 0xfff
StdChannelMask = 0xfff
UseXTerm = 1
</screen>
<para>
This allows to redirect all <function>WineDbg</function>
output to both tty Wine was started from, and
<command>xterm</command> debugging window. If Wine (or
<command>WineDbg</command>) was started with a redirection
of <filename>stdout</filename> and/or
<filename>stderr</filename> to a file (with for
example >& shell redirect command), you'll get in that
file both outputs. It may be interesting to look in the
relay trace for specific values which the process segv'ed
on.
</para>
</sect3>
<sect3>
...
...
programs/winedbg/intvar.h
View file @
41018add
...
...
@@ -27,10 +27,9 @@ INTERNAL_VAR(BreakOnFirstChance, TRUE, NULL, DT_BASIC_CONST_INT)
INTERNAL_VAR
(
BreakOnDllLoad
,
FALSE
,
NULL
,
DT_BASIC_CONST_INT
)
INTERNAL_VAR
(
CanDeferOnBPByAddr
,
FALSE
,
NULL
,
DT_BASIC_CONST_INT
)
/*
output
handling */
/*
console
handling */
INTERNAL_VAR
(
ConChannelMask
,
DBG_CHN_MESG
,
NULL
,
DT_BASIC_CONST_INT
)
INTERNAL_VAR
(
StdChannelMask
,
0
,
NULL
,
DT_BASIC_CONST_INT
)
INTERNAL_VAR
(
UseXTerm
,
TRUE
,
NULL
,
DT_BASIC_CONST_INT
)
/* debugging debugger */
INTERNAL_VAR
(
ExtDbgOnInvalidAddress
,
FALSE
,
NULL
,
DT_BASIC_CONST_INT
)
...
...
programs/winedbg/winedbg.c
View file @
41018add
...
...
@@ -1003,15 +1003,6 @@ static BOOL WINAPI DEBUG_CtrlCHandler(DWORD dwCtrlType)
static
void
DEBUG_InitConsole
(
void
)
{
/* keep it as a cuiexe for now, so that Wine won't touch the Unix stdin,
* stdout and stderr streams
*/
if
(
DBG_IVAR
(
UseXTerm
))
{
FreeConsole
();
AllocConsole
();
}
/* set our control-C handler */
SetConsoleCtrlHandler
(
DEBUG_CtrlCHandler
,
TRUE
);
...
...
@@ -1045,7 +1036,6 @@ int main(int argc, char** argv)
if
(
local_mode
!=
none_mode
)
return
DEBUG_Usage
();
local_mode
=
automatic_mode
;
/* force some internal variables */
DBG_IVAR
(
UseXTerm
)
=
0
;
DBG_IVAR
(
BreakOnDllLoad
)
=
0
;
DBG_IVAR
(
ConChannelMask
)
=
0
;
DBG_IVAR
(
StdChannelMask
)
=
DBG_CHN_MESG
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment