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
284a78f5
Commit
284a78f5
authored
May 09, 2001
by
Bang Jun-Young
Committed by
Alexandre Julliard
May 09, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not use internal exception codes defined by Wine with NetBSD,
rather use native ones from /usr/include/i386/trap.h. Note that T_MCHK is not supported by NetBSD.
parent
18bf392b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
signal_i386.c
dlls/ntdll/signal_i386.c
+5
-2
No files found.
dlls/ntdll/signal_i386.c
View file @
284a78f5
...
...
@@ -306,8 +306,8 @@ typedef struct
#endif
/* svr4 || SCO_DS */
/* exception code definitions (already defined by FreeBSD) */
#if
ndef __FreeBSD__
/* FIXME: other BSDs? */
/* exception code definitions (already defined by FreeBSD
/NetBSD
) */
#if
!defined(__FreeBSD__) && !defined(__NetBSD__)
/* FIXME: other BSDs? */
#define T_DIVIDE 0
/* Division by zero exception */
#define T_TRCTRAP 1
/* Single-step exception */
#define T_NMI 2
/* NMI interrupt */
...
...
@@ -329,6 +329,9 @@ typedef struct
#define T_MCHK 18
/* Machine check exception */
#define T_CACHEFLT 19
/* Cache flush exception */
#endif
#if defined(__NetBSD__)
#define T_MCHK 19
/* Machine check exception */
#endif
#define T_UNKNOWN (-1)
/* Unknown fault (TRAP_sig not defined) */
...
...
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