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
89e462b1
Commit
89e462b1
authored
May 28, 2012
by
André Hentschel
Committed by
Alexandre Julliard
May 29, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Add checks for DragonFly BSD.
parent
a91ef521
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
fd.c
server/fd.c
+1
-1
ptrace.c
server/ptrace.c
+1
-1
No files found.
server/fd.c
View file @
89e462b1
...
...
@@ -924,7 +924,7 @@ static int is_device_removable( dev_t dev, int unix_fd )
return
(
stfs
.
f_type
==
0x9660
||
/* iso9660 */
stfs
.
f_type
==
0x9fa1
||
/* supermount */
stfs
.
f_type
==
0x15013346
);
/* udf */
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__APPLE__)
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__
DragonFly__) || defined(__
APPLE__)
struct
statfs
stfs
;
if
(
fstatfs
(
unix_fd
,
&
stfs
)
==
-
1
)
return
0
;
...
...
server/ptrace.c
View file @
89e462b1
...
...
@@ -656,7 +656,7 @@ void set_thread_context( struct thread *thread, const context_t *context, unsign
}
#elif defined(__i386__) && defined(PTRACE_GETDBREGS) && defined(PTRACE_SETDBREGS) && \
(defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__) || defined(__NetBSD__))
(defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__) || defined(__NetBSD__)
|| defined(__DragonFly__)
)
#include <machine/reg.h>
...
...
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