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
55e1af93
Commit
55e1af93
authored
Jun 18, 1999
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added DebugBreak.
parent
410ae4f3
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
7 deletions
+4
-7
winbase.h
include/winbase.h
+1
-0
kernel32.spec
relay32/kernel32.spec
+1
-3
syslevel.c
scheduler/syslevel.c
+1
-3
main.c
windows/x11drv/main.c
+1
-1
No files found.
include/winbase.h
View file @
55e1af93
...
...
@@ -1227,6 +1227,7 @@ HANDLE WINAPI CreateSemaphoreW(LPSECURITY_ATTRIBUTES,LONG,LONG,LPCWSTR);
#define CreateSemaphore WINELIB_NAME_AW(CreateSemaphore)
HANDLE
WINAPI
CreateThread
(
LPSECURITY_ATTRIBUTES
,
DWORD
,
LPTHREAD_START_ROUTINE
,
LPVOID
,
DWORD
,
LPDWORD
);
BOOL
WINAPI
DebugActiveProcess
(
DWORD
);
void
WINAPI
DebugBreak
(
void
);
BOOL
WINAPI
DisableThreadLibraryCalls
(
HMODULE
);
BOOL
WINAPI
DosDateTimeToFileTime
(
WORD
,
WORD
,
LPFILETIME
);
BOOL
WINAPI
DuplicateHandle
(
HANDLE
,
HANDLE
,
HANDLE
,
HANDLE
*
,
DWORD
,
BOOL
,
DWORD
);
...
...
relay32/kernel32.spec
View file @
55e1af93
...
...
@@ -196,9 +196,7 @@ import ntdll.dll
178 stdcall CreateThread(ptr long ptr long long ptr) CreateThread
179 stdcall CreateToolhelp32Snapshot(long long) CreateToolhelp32Snapshot
180 stdcall DebugActiveProcess(long) DebugActiveProcess
# FIXME
#181 register DebugBreak() DebugBreak
181 stub DebugBreak
181 register DebugBreak() DebugBreak
182 stdcall DefineDosDeviceA(long str str) DefineDosDeviceA
183 stub DefineDosDeviceW
184 stdcall DeleteAtom(long) DeleteAtom
...
...
scheduler/syslevel.c
View file @
55e1af93
...
...
@@ -6,7 +6,6 @@
#include <unistd.h>
#include <sys/types.h>
#include <signal.h>
#include "syslevel.h"
#include "heap.h"
#include "stackframe.h"
...
...
@@ -241,8 +240,7 @@ VOID SYSLEVEL_CheckNotLevel( INT level )
{
ERR
(
"(%d): Holding lock of level %d!
\n
"
,
level
,
i
);
kill
(
getpid
(),
SIGHUP
);
DebugBreak
();
break
;
}
}
...
...
windows/x11drv/main.c
View file @
55e1af93
...
...
@@ -299,7 +299,7 @@ void X11DRV_USER_ParseOptions(int *argc, char *argv[])
*/
static
int
X11DRV_USER_ErrorHandler
(
Display
*
display
,
XErrorEvent
*
error_evt
)
{
kill
(
getpid
(),
SIGHUP
);
/* force an entry in the debugger */
DebugBreak
();
/* force an entry in the debugger */
return
0
;
}
...
...
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