Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
dc3623f5
Commit
dc3623f5
authored
Jul 05, 2019
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 05, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winternl.h: Remove inline DbgBreakPoint version.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a679f965
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
8 deletions
+2
-8
debugger.c
dlls/kernel32/tests/debugger.c
+0
-1
winternl.h
include/winternl.h
+2
-7
No files found.
dlls/kernel32/tests/debugger.c
View file @
dc3623f5
...
...
@@ -998,7 +998,6 @@ static void test_debug_children(char *name, DWORD flag, BOOL debug_child)
ok
(
ctx
.
ev
.
dwThreadId
==
last_thread
,
"unexpected thread
\n
"
);
ok
(
ctx
.
ev
.
u
.
Exception
.
ExceptionRecord
.
ExceptionCode
==
EXCEPTION_BREAKPOINT
,
"ExceptionCode = %x
\n
"
,
ctx
.
ev
.
u
.
Exception
.
ExceptionRecord
.
ExceptionCode
);
todo_wine_if
(
sizeof
(
void
*
)
==
4
)
ok
(
ctx
.
ev
.
u
.
Exception
.
ExceptionRecord
.
ExceptionAddress
==
pDbgBreakPoint
,
"ExceptionAddres != DbgBreakPoint
\n
"
);
ret
=
SetEvent
(
event_attach
);
...
...
include/winternl.h
View file @
dc3623f5
...
...
@@ -2285,17 +2285,12 @@ typedef LONG (CALLBACK *PRTL_EXCEPTION_FILTER)(PEXCEPTION_POINTERS);
* Function declarations
*/
#if defined(__i386__) && defined(__GNUC__)
static
inline
void
WINAPI
DbgBreakPoint
(
void
)
{
__asm__
__volatile__
(
"int3"
);
}
static
inline
void
WINAPI
DbgUserBreakPoint
(
void
)
{
__asm__
__volatile__
(
"int3"
);
}
#else
/* __i386__ && __GNUC__ */
NTSYSAPI
void
WINAPI
DbgBreakPoint
(
void
);
NTSYSAPI
void
WINAPI
DbgUserBreakPoint
(
void
);
#endif
/* __i386__ && __GNUC__ */
NTSYSAPI
void
WINAPI
DbgBreakPoint
(
void
);
NTSYSAPI
NTSTATUS
WINAPIV
DbgPrint
(
LPCSTR
fmt
,
...);
NTSYSAPI
NTSTATUS
WINAPIV
DbgPrintEx
(
ULONG
iComponentId
,
ULONG
Level
,
LPCSTR
fmt
,
...);
NTSYSAPI
NTSTATUS
WINAPI
DbgUiIssueRemoteBreakin
(
HANDLE
);
NTSYSAPI
void
WINAPI
DbgUiRemoteBreakin
(
void
*
);
NTSYSAPI
void
WINAPI
DbgUserBreakPoint
(
void
);
NTSYSAPI
NTSTATUS
WINAPI
LdrAccessResource
(
HMODULE
,
const
IMAGE_RESOURCE_DATA_ENTRY
*
,
void
**
,
PULONG
);
NTSYSAPI
NTSTATUS
WINAPI
LdrAddRefDll
(
ULONG
,
HMODULE
);
NTSYSAPI
NTSTATUS
WINAPI
LdrFindResourceDirectory_U
(
HMODULE
,
const
LDR_RESOURCE_INFO
*
,
ULONG
,
const
IMAGE_RESOURCE_DIRECTORY
**
);
...
...
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