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
9261ef2d
Commit
9261ef2d
authored
Nov 21, 2010
by
Eric Pouech
Committed by
Alexandre Julliard
Nov 23, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Rename 'info exception' into 'info frame' (which is somehow closer to what it does).
parent
ecd2e603
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
8 deletions
+10
-8
dbg.y
programs/winedbg/dbg.y
+2
-2
debug.l
programs/winedbg/debug.l
+1
-1
debugger.h
programs/winedbg/debugger.h
+1
-1
info.c
programs/winedbg/info.c
+2
-2
winedbg.man.in
programs/winedbg/winedbg.man.in
+4
-2
No files found.
programs/winedbg/dbg.y
View file @
9261ef2d
...
...
@@ -287,8 +287,8 @@ info_command:
| tINFO '*' tWND expr_rvalue { info_win32_window((HWND)$4, TRUE); }
| tINFO tPROCESS { info_win32_processes(); }
| tINFO tTHREAD { info_win32_threads(); }
| tINFO t
EXCEPTION { info_win32
_exceptions(dbg_curr_tid); }
| tINFO t
EXCEPTION expr_rvalue { info_win32
_exceptions($3); }
| tINFO t
FRAME { info_win32_frame
_exceptions(dbg_curr_tid); }
| tINFO t
FRAME expr_rvalue { info_win32_frame
_exceptions($3); }
| tINFO tMAPS { info_win32_virtual(dbg_curr_pid); }
| tINFO tMAPS expr_rvalue { info_win32_virtual($3); }
;
...
...
programs/winedbg/debug.l
View file @
9261ef2d
...
...
@@ -166,7 +166,7 @@ STRING \"[^\n"]+\"
<INITIAL,NOPROCESS>info|inf|in { BEGIN(INFO_CMD); return tINFO; }
<INITIAL>up { BEGIN(NOCMD); return tUP; }
<INITIAL>down|dow|do { BEGIN(NOCMD); return tDOWN; }
<INITIAL
>frame|fram|fra|fr
{ BEGIN(NOCMD); return tFRAME; }
<INITIAL
,INFO_CMD>frame|fram|fra|fr
{ BEGIN(NOCMD); return tFRAME; }
<INITIAL>list|lis|li|l { BEGIN(PATH_ACCEPTED); return tLIST; }
<INITIAL>enable|enabl|enab|ena { BEGIN(BD_CMD); return tENABLE;}
<INITIAL>disable|disabl|disab|disa|dis { BEGIN(BD_CMD); return tDISABLE; }
...
...
programs/winedbg/debugger.h
View file @
9261ef2d
...
...
@@ -351,7 +351,7 @@ extern void info_win32_class(HWND hWnd, const char* clsName);
extern
void
info_win32_window
(
HWND
hWnd
,
BOOL
detailed
);
extern
void
info_win32_processes
(
void
);
extern
void
info_win32_threads
(
void
);
extern
void
info_win32_exceptions
(
DWORD
tid
);
extern
void
info_win32_
frame_
exceptions
(
DWORD
tid
);
extern
void
info_win32_virtual
(
DWORD
pid
);
extern
void
info_win32_segments
(
DWORD
start
,
int
length
);
extern
void
info_wine_dbg_channel
(
BOOL
add
,
const
char
*
chnl
,
const
char
*
name
);
...
...
programs/winedbg/info.c
View file @
9261ef2d
...
...
@@ -543,11 +543,11 @@ void info_win32_threads(void)
}
/***********************************************************************
* info_win32_exceptions
* info_win32_
frame_
exceptions
*
* Get info on the exception frames of a given thread.
*/
void
info_win32_exceptions
(
DWORD
tid
)
void
info_win32_
frame_
exceptions
(
DWORD
tid
)
{
struct
dbg_thread
*
thread
;
void
*
next_frame
;
...
...
programs/winedbg/winedbg.man.in
View file @
9261ef2d
...
...
@@ -366,8 +366,10 @@ Prints information of Window of handle \fBN\fR
Lists all w-processes in Wine session
.IP \fBinfo\ thread\fR
Lists all w-threads in Wine session
.IP \fBinfo\ exception\fR
Lists the exception frames (starting from current stack frame)
.IP \fBinfo\ frame\fR
Lists the exception frames (starting from current stack frame). You
can also pass, as optional argument, a thread id (instead of current
thread) to examine its exception frames.
.PP
Debug messages can be turned on and off as you are debugging using
the \fBset\fR command, but only for channels initialized with the
...
...
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