Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
bf01f050
Commit
bf01f050
authored
May 08, 2003
by
Pierre d'Herbemont
Committed by
Alexandre Julliard
May 08, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Dar, Dsisr and Trap registers for the PowerPC CONTEXT structure.
parent
3a10bf58
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
winnt.h
include/winnt.h
+8
-1
No files found.
include/winnt.h
View file @
bf01f050
...
...
@@ -892,7 +892,10 @@ typedef struct
DWORD
Ctr
;
DWORD
ContextFlags
;
DWORD
Fill
[
3
];
DWORD
Dar
;
/* Fault registers for coredump */
DWORD
Dsisr
;
DWORD
Trap
;
/* number of powerpc exception taken */
/* These are selected by CONTEXT_DEBUG_REGISTERS */
DWORD
Dr0
;
...
...
@@ -1632,7 +1635,11 @@ extern inline struct _TEB * WINAPI NtCurrentTeb(void);
extern
inline
struct
_TEB
*
WINAPI
NtCurrentTeb
(
void
)
{
struct
_TEB
*
teb
;
# ifdef __darwin__
__asm__
(
"
\t
mr %0, r13"
:
"=r"
(
teb
));
# else
__asm__
(
"
\t
mr %0, 2"
:
"=r"
(
teb
));
# endif
return
teb
;
}
#else
...
...
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